summaryrefslogtreecommitdiff
path: root/include/elf/internal.h
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2003-05-21 00:55:15 +0000
committerRoland McGrath <roland@gnu.org>2003-05-21 00:55:15 +0000
commit4568c9994ea8a181d7adc1224a791af08603c25b (patch)
tree8cd84f5e10db056c166a2674382a8d77f2c1962b /include/elf/internal.h
parentd93030379abf7db98313a94b93a8231944007138 (diff)
downloadgdb-4568c9994ea8a181d7adc1224a791af08603c25b.tar.gz
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.
Diffstat (limited to 'include/elf/internal.h')
-rw-r--r--include/elf/internal.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/elf/internal.h b/include/elf/internal.h
index 45d682a2256..a7299d90534 100644
--- a/include/elf/internal.h
+++ b/include/elf/internal.h
@@ -214,6 +214,13 @@ typedef struct
unsigned short int si_flags;
} Elf_Internal_Syminfo;
+/* This structure appears on the stack and in NT_AUXV core file notes. */
+typedef struct
+{
+ bfd_vma a_type;
+ bfd_vma a_val;
+} Elf_Internal_Auxv;
+
/* This structure is used to describe how sections should be assigned
to program segments. */