summaryrefslogtreecommitdiff
path: root/sysdeps/generic/dl-sysdep.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2004-04-01 08:55:15 +0000
committerUlrich Drepper <drepper@redhat.com>2004-04-01 08:55:15 +0000
commitbf244ee81f5faa7c84ec3d337ea41a8c46f94497 (patch)
tree112b5845e3c7f808df35c60cb0b6feb6e3889ad9 /sysdeps/generic/dl-sysdep.c
parent8820efe9f0ccf9a32d0daedf98b906ef3b8f99ea (diff)
(_dl_show_auxv): Add handling for ignored entries. Ignore AT_IGNOREPPC.
Diffstat (limited to 'sysdeps/generic/dl-sysdep.c')
-rw-r--r--sysdeps/generic/dl-sysdep.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/sysdeps/generic/dl-sysdep.c b/sysdeps/generic/dl-sysdep.c
index 51f301490d..429947ccd9 100644
--- a/sysdeps/generic/dl-sysdep.c
+++ b/sysdeps/generic/dl-sysdep.c
@@ -262,7 +262,7 @@ _dl_show_auxv (void)
static const struct
{
const char label[20];
- enum { unused, dec, hex, str } form;
+ enum { unknown = 0, dec, hex, str, ignore } form;
} auxvars[] =
{
[AT_EXECFD - 2] = { "AT_EXECFD: ", dec },
@@ -285,14 +285,18 @@ _dl_show_auxv (void)
[AT_DCACHEBSIZE - 2] = { "AT_DCACHEBSIZE: 0x", hex },
[AT_ICACHEBSIZE - 2] = { "AT_ICACHEBSIZE: 0x", hex },
[AT_UCACHEBSIZE - 2] = { "AT_UCACHEBSIZE: 0x", hex },
+ [AT_IGNOREPPC - 2] = { "AT_IGNOREPPC", ignore },
+ [AT_SECURE - 2] = { "AT_SECURE: ", dec },
#ifdef NEED_DL_SYSINFO
[AT_SYSINFO - 2] = { "AT_SYSINFO: 0x", hex },
[AT_SYSINFO_EHDR - 2] = { "AT_SYSINFO_EHDR: 0x", hex },
#endif
- [AT_SECURE - 2] = { "AT_SECURE: ", dec },
};
unsigned int idx = (unsigned int) (av->a_type - 2);
+ if ((unsigned int) av->a_type < 2u || auxvars[idx].form == ignore)
+ continue;
+
assert (AT_NULL == 0);
assert (AT_IGNORE == 1);
@@ -304,7 +308,7 @@ _dl_show_auxv (void)
}
if (idx < sizeof (auxvars) / sizeof (auxvars[0])
- && auxvars[idx].form != unused)
+ && auxvars[idx].form != unknown)
{
const char *val = av->a_un.a_ptr;