diff options
| author | Thomas Preud'homme <robotux@celest.fr> | 2013-10-29 22:10:02 +0800 |
|---|---|---|
| committer | Thomas Preud'homme <robotux@celest.fr> | 2013-10-29 22:10:02 +0800 |
| commit | 1c4afd13501f07a673aed5f130166f2ee0f30927 (patch) | |
| tree | 01d8f2a1455cd0b0cf8036a129418361207a6e6c /elf.h | |
| parent | 3b07a15fd12d5452bf539cd855edde8139db1686 (diff) | |
| download | tinycc-1c4afd13501f07a673aed5f130166f2ee0f30927.tar.gz tinycc-1c4afd13501f07a673aed5f130166f2ee0f30927.tar.bz2 | |
Add support for thread-local storage variables
Diffstat (limited to 'elf.h')
| -rw-r--r-- | elf.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -447,6 +447,7 @@ typedef struct #define STT_SECTION 3 /* Symbol associated with a section */ #define STT_FILE 4 /* Symbol's name is file name */ #define STT_NUM 5 /* Number of defined types. */ +#define STT_TLS 6 /* Symbol is a thread-local data object */ #define STT_GNU_IFUNC 10 /* Symbol is a indirect code object */ #define STT_LOOS 11 /* Start of OS-specific */ #define STT_HIOS 12 /* End of OS-specific */ @@ -555,7 +556,8 @@ typedef struct #define PT_NOTE 4 /* Auxiliary information */ #define PT_SHLIB 5 /* Reserved */ #define PT_PHDR 6 /* Entry for header table itself */ -#define PT_NUM 7 /* Number of defined types. */ +#define PT_TLS 7 /* Thread-local program segment */ +#define PT_NUM 8 /* Number of defined types. */ #define PT_LOOS 0x60000000 /* Start of OS-specific */ #define PT_HIOS 0x6fffffff /* End of OS-specific */ #define PT_LOPROC 0x70000000 /* Start of processor-specific */ |
