diff options
author | Ryan S. Arnold <rsa@linux.vnet.ibm.com> | 2013-06-26 08:50:20 -0500 |
---|---|---|
committer | Ryan S. Arnold <rsa@linux.vnet.ibm.com> | 2013-06-26 08:50:20 -0500 |
commit | c18c701d030e28698e6faee9c6d3b8b80d0e2302 (patch) | |
tree | d1d07301f27fba6fbf7d48ccb64b992b663a57f9 /elf/elf.h | |
parent | 89756a8cdb72c3741aa01e97d4ec8c4b30da585b (diff) | |
download | glibc-c18c701d030e28698e6faee9c6d3b8b80d0e2302.zip glibc-c18c701d030e28698e6faee9c6d3b8b80d0e2302.tar.gz glibc-c18c701d030e28698e6faee9c6d3b8b80d0e2302.tar.bz2 |
Add AT_HWCAP2 as a new auxv_t a_type to elf.h.
Diffstat (limited to 'elf/elf.h')
-rw-r--r-- | elf/elf.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -993,7 +993,7 @@ typedef struct /* Some more special a_type values describing the hardware. */ #define AT_PLATFORM 15 /* String identifying platform. */ -#define AT_HWCAP 16 /* Machine dependent hints about +#define AT_HWCAP 16 /* Machine-dependent hints about processor capabilities. */ /* This entry gives some information about the FPU initialization @@ -1015,6 +1015,9 @@ typedef struct #define AT_RANDOM 25 /* Address of 16 random bytes. */ +#define AT_HWCAP2 26 /* More machine-dependent hints about + processor capabilities. */ + #define AT_EXECFN 31 /* Filename of executable. */ /* Pointer to the global system page used for system calls and other |