33 lines
1.5 KiB
Diff
33 lines
1.5 KiB
Diff
Index: gdb/auxv.c
|
|
===================================================================
|
|
RCS file: /cvs/src/src/gdb/auxv.c,v
|
|
retrieving revision 1.15
|
|
diff -u -a -p -r1.15 auxv.c
|
|
--- gdb/auxv.c 28 Oct 2008 17:19:56 -0000 1.15
|
|
+++ gdb/auxv.c 3 Nov 2008 20:11:26 -0000
|
|
@@ -206,6 +206,8 @@ fprint_target_auxv (struct ui_file *file
|
|
TAG (AT_SYSINFO, _("Special system info/entry points"), hex);
|
|
TAG (AT_SYSINFO_EHDR, _("System-supplied DSO's ELF header"), hex);
|
|
TAG (AT_SECURE, _("Boolean, was exec setuid-like?"), dec);
|
|
+ TAG (AT_BASE_PLATFORM, _("String identifying base platform"), str);
|
|
+ TAG (AT_EXECFN, _("File name given to execve"), str);
|
|
TAG (AT_SUN_UID, _("Effective user ID"), dec);
|
|
TAG (AT_SUN_RUID, _("Real user ID"), dec);
|
|
TAG (AT_SUN_GID, _("Effective group ID"), dec);
|
|
Index: include/elf/common.h
|
|
===================================================================
|
|
RCS file: /cvs/src/src/include/elf/common.h,v
|
|
retrieving revision 1.99
|
|
diff -u -a -p -r1.99 common.h
|
|
--- include/elf/common.h 3 Aug 2008 23:20:42 -0000 1.99
|
|
+++ include/elf/common.h 3 Nov 2008 20:11:26 -0000
|
|
@@ -798,6 +798,8 @@
|
|
#define AT_UCACHEBSIZE 21 /* Unified cache block size. */
|
|
#define AT_IGNOREPPC 22 /* Entry should be ignored */
|
|
#define AT_SECURE 23 /* Boolean, was exec setuid-like? */
|
|
+#define AT_BASE_PLATFORM 24 /* String identifying base platform. */
|
|
+#define AT_EXECFN 31 /* File name given to execve. */
|
|
/* Pointer to the global system page used for system calls and other
|
|
nice things. */
|
|
#define AT_SYSINFO 32
|