diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-01-30 17:31:48 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-01-30 17:31:48 +0000 |
commit | 5df8349b84a85dee067380ad4a5c3b90148a6504 (patch) | |
tree | 78e95a5347903a225b59cc5d37a1e7dd29772b1e /elf | |
parent | f3174742cc1886941e7229ffbd48fa37a1106e3a (diff) | |
download | glibc-5df8349b84a85dee067380ad4a5c3b90148a6504.tar.gz glibc-5df8349b84a85dee067380ad4a5c3b90148a6504.tar.xz glibc-5df8349b84a85dee067380ad4a5c3b90148a6504.zip |
(_dl_aux_init): Handle AT_SYSINFO.
Diffstat (limited to 'elf')
-rw-r--r-- | elf/dl-support.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/elf/dl-support.c b/elf/dl-support.c index 0b7c119696..efeddb6fe1 100644 --- a/elf/dl-support.c +++ b/elf/dl-support.c @@ -161,6 +161,11 @@ _dl_aux_init (ElfW(auxv_t) *av) case AT_PHNUM: GL(dl_phnum) = av->a_un.a_val; break; +#ifdef NEED_DL_SYSINFO + case AT_SYSINFO: + GL(dl_sysinfo) = av->a_un.a_val; + break; +#endif } } #endif |