Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <mcgrathr@google.com>2003-05-21 04:55:15 +0400
committerRoland McGrath <mcgrathr@google.com>2003-05-21 04:55:15 +0400
commit98e6de07720252fd68143df18e0be8f87337cc30 (patch)
tree4895b6a7ab0ca822761278730234aeca150d0912 /include/elf/external.h
parent00b5e06003c309fc93150ca037cbf977caa47cf5 (diff)
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/external.h')
-rw-r--r--include/elf/external.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/elf/external.h b/include/elf/external.h
index 403ee622b..a17143917 100644
--- a/include/elf/external.h
+++ b/include/elf/external.h
@@ -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 */