mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-28 15:18:37 +08:00
2003-05-15 Roland McGrath <roland@redhat.com>
* common.h (NT_AUXV, AT_*): New macros. * external.h (Elf32_External_Auxv, Elf64_External_Auxv): New types. * internal.h (Elf_Internal_Auxv): New type.
This commit is contained in:
@ -258,4 +258,19 @@ typedef struct
|
||||
unsigned char si_flags[2];
|
||||
} Elf_External_Syminfo;
|
||||
|
||||
|
||||
/* This structure appears on the stack and in NT_AUXV core file notes. */
|
||||
typedef struct
|
||||
{
|
||||
unsigned char a_type[4];
|
||||
unsigned char a_val[4];
|
||||
} Elf32_External_Auxv;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
unsigned char a_type[8];
|
||||
unsigned char a_val[8];
|
||||
} Elf64_External_Auxv;
|
||||
|
||||
|
||||
#endif /* _ELF_EXTERNAL_H */
|
||||
|
Reference in New Issue
Block a user