diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2025-02-26 15:50:05 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2025-03-05 11:22:09 -0300 |
commit | 6cb703b81d18d64447a2cd1069fda30994542c60 (patch) | |
tree | 3d7335b99f552ef54aabb430d3ad8f67d450cb06 /sysdeps/unix/sysv/linux | |
parent | 1d60b9dfdab411a0cd8856adffc5124c86cde5e1 (diff) | |
download | glibc-6cb703b81d18d64447a2cd1069fda30994542c60.zip glibc-6cb703b81d18d64447a2cd1069fda30994542c60.tar.gz glibc-6cb703b81d18d64447a2cd1069fda30994542c60.tar.bz2 |
linux: Prefix AT_HWCAP with 0x on LD_SHOW_AUXV
Suggested-by: Stefan Liebler <stli@linux.ibm.com>
Reviewed-by: Stefan Liebler <stli@linux.ibm.com>
Diffstat (limited to 'sysdeps/unix/sysv/linux')
-rw-r--r-- | sysdeps/unix/sysv/linux/dl-sysdep.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/unix/sysv/linux/dl-sysdep.c b/sysdeps/unix/sysv/linux/dl-sysdep.c index 544902e..f17a3e1 100644 --- a/sysdeps/unix/sysv/linux/dl-sysdep.c +++ b/sysdeps/unix/sysv/linux/dl-sysdep.c @@ -184,7 +184,10 @@ _dl_show_auxv (void) [AT_GID - 2] = { "GID: ", dec }, [AT_EGID - 2] = { "EGID: ", dec }, [AT_PLATFORM - 2] = { "PLATFORM: ", str }, - [AT_HWCAP - 2] = { "HWCAP: ", hex }, + [AT_HWCAP - 2] = { "HWCAP: 0x", hex }, + [AT_HWCAP2 - 2] = { "HWCAP2: 0x", hex }, + [AT_HWCAP3 - 2] = { "HWCAP3: 0x", hex }, + [AT_HWCAP4 - 2] = { "HWCAP4: 0x", hex }, [AT_CLKTCK - 2] = { "CLKTCK: ", dec }, [AT_FPUCW - 2] = { "FPUCW: ", hex }, [AT_DCACHEBSIZE - 2] = { "DCACHEBSIZE: 0x", hex }, @@ -196,9 +199,6 @@ _dl_show_auxv (void) [AT_SYSINFO - 2] = { "SYSINFO: 0x", hex }, [AT_SYSINFO_EHDR - 2] = { "SYSINFO_EHDR: 0x", hex }, [AT_RANDOM - 2] = { "RANDOM: 0x", hex }, - [AT_HWCAP2 - 2] = { "HWCAP2: 0x", hex }, - [AT_HWCAP3 - 2] = { "HWCAP3: 0x", hex }, - [AT_HWCAP4 - 2] = { "HWCAP4: 0x", hex }, [AT_RSEQ_FEATURE_SIZE - 2] = { "RSEQ_FEATURE_SIZE: ", dec }, [AT_RSEQ_ALIGN - 2] = { "RSEQ_ALIGN: ", dec }, [AT_MINSIGSTKSZ - 2] = { "MINSIGSTKSZ: ", dec }, |