diff options
| author | Alexander Kabaev <kan@FreeBSD.org> | 2003-06-18 16:38:22 +0000 |
|---|---|---|
| committer | Alexander Kabaev <kan@FreeBSD.org> | 2003-06-18 16:38:22 +0000 |
| commit | cc2e7a06072e0447d46d086c1e763473b3bbfa97 (patch) | |
| tree | 1861a16054f28ee872cbac2fa76639c401d13346 | |
| parent | 5952de4b1b4a26c2f9d7542e9d69ade410954db2 (diff) | |
Notes
| -rw-r--r-- | sys/sys/elf_common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/sys/elf_common.h b/sys/sys/elf_common.h index 5bcdb0756fc2..0ee8848d984d 100644 --- a/sys/sys/elf_common.h +++ b/sys/sys/elf_common.h @@ -174,6 +174,7 @@ typedef struct { #define SHF_WRITE 0x1 /* Section contains writable data. */ #define SHF_ALLOC 0x2 /* Section occupies memory. */ #define SHF_EXECINSTR 0x4 /* Section contains instructions. */ +#define SHF_TLS 0x400 /* Section contains TLS data. */ #define SHF_MASKPROC 0xf0000000 /* Reserved for processor-specific. */ /* Values for p_type. */ @@ -288,6 +289,7 @@ typedef struct { #define STT_FUNC 2 /* Function. */ #define STT_SECTION 3 /* Section. */ #define STT_FILE 4 /* Source file. */ +#define STT_TLS 6 /* TLS object. */ #define STT_LOPROC 13 /* reserved range for processor */ #define STT_HIPROC 15 /* specific symbol types */ |
