(_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
1 changed files with 5 additions and 0 deletions

View File

@ -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