diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-12-18 06:52:10 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-12-18 06:52:10 +0000 |
commit | ff4056c02c4899277a285cb2720531bc64a06c0e (patch) | |
tree | 8ac42812b3463e911724633c3967ca3f14d5d9af /sysdeps/generic | |
parent | 82f81a9086320d12eb2fc45766203954b90461a2 (diff) | |
download | glibc-ff4056c02c4899277a285cb2720531bc64a06c0e.tar glibc-ff4056c02c4899277a285cb2720531bc64a06c0e.tar.gz glibc-ff4056c02c4899277a285cb2720531bc64a06c0e.tar.bz2 glibc-ff4056c02c4899277a285cb2720531bc64a06c0e.zip |
Update.
2002-12-17 Ulrich Drepper <drepper@redhat.com>
* elf/elf.h (AT_SYSINFO): New define.
* sysdeps/generic/dl-sysdep.c (_dl_show_auxv): Add support for
AT_SYSINFO.
Diffstat (limited to 'sysdeps/generic')
-rw-r--r-- | sysdeps/generic/dl-sysdep.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/generic/dl-sysdep.c b/sysdeps/generic/dl-sysdep.c index 17e8f4dcf2..256eca5227 100644 --- a/sysdeps/generic/dl-sysdep.c +++ b/sysdeps/generic/dl-sysdep.c @@ -238,7 +238,8 @@ _dl_show_auxv (void) [AT_FPUCW - 2] = { "AT_FPUCW: ", hex }, [AT_DCACHEBSIZE - 2] = { "AT_DCACHEBSIZE: 0x", hex }, [AT_ICACHEBSIZE - 2] = { "AT_ICACHEBSIZE: 0x", hex }, - [AT_UCACHEBSIZE - 2] = { "AT_UCACHEBSIZE: 0x", hex } + [AT_UCACHEBSIZE - 2] = { "AT_UCACHEBSIZE: 0x", hex }, + [AT_SYSINFO - 2] = { "AT_SYSINFO: 0x", hex } }; unsigned int idx = (unsigned int) (av->a_type - 2); |