diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-11-09 04:02:41 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-11-09 04:02:41 +0000 |
commit | f2b9733fd6af9cd7e2aac553db4b30c96b83f66c (patch) | |
tree | 640101d9d250f624067a948b3db59d2dc3a64dae /elf/elf.h | |
parent | 178a145a90c1c03baaa634bdb69a73b2e6aa2c72 (diff) | |
download | glibc-f2b9733fd6af9cd7e2aac553db4b30c96b83f66c.tar.gz glibc-f2b9733fd6af9cd7e2aac553db4b30c96b83f66c.tar.xz glibc-f2b9733fd6af9cd7e2aac553db4b30c96b83f66c.zip |
Update.
1999-11-08 Ulrich Drepper <drepper@cygnus.com> * elf/elf.h: Add STT_REGISTER, STT_HP_OPAQUE, and STT_ST_STUB definitions.
Diffstat (limited to 'elf/elf.h')
-rw-r--r-- | elf/elf.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/elf/elf.h b/elf/elf.h index 20b5ddb880..414b74d2c1 100644 --- a/elf/elf.h +++ b/elf/elf.h @@ -943,6 +943,10 @@ typedef struct /* SUN SPARC specific definitions. */ +/* Legal values for ST_TYPE subfield of st_info (symbol type). */ + +#define STT_REGISTER 13 /* Global register reserved to app. */ + /* Values for Elf64_Ehdr.e_flags. */ #define EF_SPARCV9_MM 3 @@ -1427,6 +1431,9 @@ typedef Elf32_Addr Elf32_Conflict; #define STT_PARISC_MILLICODE 13 /* Millicode function entry point. */ +#define STT_HP_OPAQUE (STT_LOOS + 0x1) +#define STT_HP_STUB (STT_LOOS + 0x2) + /* HPPA relocs. */ #define R_PARISC_NONE 0 /* No reloc. */ |