diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 5 | ||||
-rw-r--r-- | include/elf/common.h | 1 | ||||
-rw-r--r-- | include/elf/x86-64.h | 4 |
3 files changed, 10 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index ed9edb2b8..a3cbebedd 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,8 @@ +2004-10-08 Daniel Jacobowitz <dan@debian.org> + + * elf/common.h (PT_SUNW_EH_FRAME): Define. + * elf/x86-64.h (SHT_X86_64_UNWIND): Define. + 2004-10-07 Bob Wilson <bob.wilson@acm.org> * xtensa-config.h (XSHAL_USE_ABSOLUTE_LITERALS, diff --git a/include/elf/common.h b/include/elf/common.h index 5573fca76..db92ff6a8 100644 --- a/include/elf/common.h +++ b/include/elf/common.h @@ -290,6 +290,7 @@ #define PT_HIPROC 0x7FFFFFFF /* Processor-specific */ #define PT_GNU_EH_FRAME (PT_LOOS + 0x474e550) /* Frame unwind information */ +#define PT_SUNW_EH_FRAME PT_GNU_EH_FRAME /* Solaris uses the same value */ #define PT_GNU_STACK (PT_LOOS + 0x474e551) /* Stack flags */ #define PT_GNU_RELRO (PT_LOOS + 0x474e552) /* Read-only after relocation */ diff --git a/include/elf/x86-64.h b/include/elf/x86-64.h index 7e9100dba..2252bd0d1 100644 --- a/include/elf/x86-64.h +++ b/include/elf/x86-64.h @@ -53,4 +53,8 @@ START_RELOC_NUMBERS (elf_x86_64_reloc_type) RELOC_NUMBER (R_X86_64_GNU_VTENTRY, 251) /* GNU C++ hack */ END_RELOC_NUMBERS (R_X86_64_max) +/* Processor specific section types. */ + +#define SHT_X86_64_UNWIND 0x70000001 /* unwind information */ + #endif |