Move/add ARM ELF PHDR types to elf_common.h

Accidentally missed in r303674
This commit is contained in:
Ed Maste 2016-08-02 20:26:04 +00:00
parent 00f060000f
commit dd2be8cb6e
2 changed files with 2 additions and 3 deletions

View File

@ -55,9 +55,6 @@ __ElfType(Auxinfo);
#define ELF_MACHINE_OK(x) ((x) == EM_ARM) #define ELF_MACHINE_OK(x) ((x) == EM_ARM)
/* Unwind info section type */
#define PT_ARM_EXIDX (PT_LOPROC + 1)
/* /*
* Relocation types. * Relocation types.
*/ */

View File

@ -511,6 +511,8 @@ typedef struct {
#define PT_HISUNW 0x6fffffff #define PT_HISUNW 0x6fffffff
#define PT_HIOS 0x6fffffff /* Last OS-specific. */ #define PT_HIOS 0x6fffffff /* Last OS-specific. */
#define PT_LOPROC 0x70000000 /* First processor-specific type. */ #define PT_LOPROC 0x70000000 /* First processor-specific type. */
#define PT_ARM_ARCHEXT 0x70000000 /* ARM arch compat information. */
#define PT_ARM_EXIDX 0x70000001 /* ARM exception unwind tables. */
#define PT_HIPROC 0x7fffffff /* Last processor-specific type. */ #define PT_HIPROC 0x7fffffff /* Last processor-specific type. */
/* Values for p_flags. */ /* Values for p_flags. */