diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | elf/dl-support.c | 3 |
2 files changed, 8 insertions, 0 deletions
@@ -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> * conform/Makefile (test-xfail-ISO11/complex.h/conform): Remove diff --git a/elf/dl-support.c b/elf/dl-support.c index 9bbaa5b..9af0d8a 100644 --- a/elf/dl-support.c +++ b/elf/dl-support.c @@ -244,6 +244,9 @@ _dl_aux_init (ElfW(auxv_t) *av) case AT_PHNUM: GL(dl_phnum) = av->a_un.a_val; break; + case AT_PLATFORM: + GLRO(dl_platform) = (void *) av->a_un.a_val; + break; case AT_HWCAP: GLRO(dl_hwcap) = (unsigned long int) av->a_un.a_val; break; |