mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-05 19:35:52 +03:00
Add AT_PLATFORM to _dl_aux_init ()
Added AT_PLATFORM to _dl_aux_init () function to keep it in sync with _dl_sysdep_start (). * elf/dl-support.c (_dl_aux_init): Added AT_PLATFORM to the case statement.
This commit is contained in:
committed by
Tulio Magno Quites Machado Filho
parent
8b126a4a2c
commit
76c5ae0028
@@ -1,3 +1,8 @@
|
|||||||
|
2015-10-27 Carlos Eduardo Seo <cseo@linux.vnet.ibm.com>
|
||||||
|
|
||||||
|
* elf/dl-support.c (_dl_aux_init): Added AT_PLATFORM to the case
|
||||||
|
statement.
|
||||||
|
|
||||||
2015-10-27 Joseph Myers <joseph@codesourcery.com>
|
2015-10-27 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
* conform/Makefile (test-xfail-ISO11/complex.h/conform): Remove
|
* conform/Makefile (test-xfail-ISO11/complex.h/conform): Remove
|
||||||
|
@@ -244,6 +244,9 @@ _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;
|
||||||
|
case AT_PLATFORM:
|
||||||
|
GLRO(dl_platform) = (void *) av->a_un.a_val;
|
||||||
|
break;
|
||||||
case AT_HWCAP:
|
case AT_HWCAP:
|
||||||
GLRO(dl_hwcap) = (unsigned long int) av->a_un.a_val;
|
GLRO(dl_hwcap) = (unsigned long int) av->a_un.a_val;
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user