diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2008-11-13 15:07:54 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2008-11-13 15:07:54 +0000 |
commit | 759cc328c6097b831eec8c85adf91b011a077378 (patch) | |
tree | 6831af1044623104b453a8ef7592376281cbd7bc /gdb/auxv.c | |
parent | 73e113d4609dd70ee0ee7a334a132044df651854 (diff) | |
download | gdb-759cc328c6097b831eec8c85adf91b011a077378.zip gdb-759cc328c6097b831eec8c85adf91b011a077378.tar.gz gdb-759cc328c6097b831eec8c85adf91b011a077378.tar.bz2 |
gdb/ChangeLog:
* auxv.c (fprint_target_auxv): Handle AT_BASE_PLATFORM and
AT_EXECFN. Re-sort AT_SECURE.
include/elf/ChangeLog:
* common.h (AT_BASE_PLATFORM, AT_EXECFN): Define.
Diffstat (limited to 'gdb/auxv.c')
-rw-r--r-- | gdb/auxv.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -203,9 +203,11 @@ fprint_target_auxv (struct ui_file *file, struct target_ops *ops) TAG (AT_ICACHEBSIZE, _("Instruction cache block size"), dec); TAG (AT_UCACHEBSIZE, _("Unified cache block size"), dec); TAG (AT_IGNOREPPC, _("Entry should be ignored"), dec); + TAG (AT_BASE_PLATFORM, _("String identifying base platform"), str); + TAG (AT_EXECFN, _("File name of executable"), str); + TAG (AT_SECURE, _("Boolean, was exec setuid-like?"), dec); 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_SUN_UID, _("Effective user ID"), dec); TAG (AT_SUN_RUID, _("Real user ID"), dec); TAG (AT_SUN_GID, _("Effective group ID"), dec); |