1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-07 06:43:00 +03:00

(_dl_aux_init): Handle AT_SYSINFO.

This commit is contained in:
Ulrich Drepper
2003-01-30 17:31:48 +00:00
parent f3174742cc
commit 5df8349b84

View File

@@ -161,6 +161,11 @@ _dl_aux_init (ElfW(auxv_t) *av)
case AT_PHNUM: case AT_PHNUM:
GL(dl_phnum) = av->a_un.a_val; GL(dl_phnum) = av->a_un.a_val;
break; break;
#ifdef NEED_DL_SYSINFO
case AT_SYSINFO:
GL(dl_sysinfo) = av->a_un.a_val;
break;
#endif
} }
} }
#endif #endif