diff options
| author | Peter Maydell | 2014-05-06 11:56:38 +0200 |
|---|---|---|
| committer | Peter Maydell | 2014-05-06 11:56:38 +0200 |
| commit | cf972928fc1f8d5f6ecaacf5ef354cbe52d79a90 (patch) | |
| tree | 8ccd2005d78a7d0556a4118d4fdde3e8eabcc4b6 /include | |
| parent | Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20140501'... (diff) | |
| parent | linux-user: fix getrusage and wait4 failures with invalid rusage struct (diff) | |
| download | qemu-cf972928fc1f8d5f6ecaacf5ef354cbe52d79a90.tar.gz qemu-cf972928fc1f8d5f6ecaacf5ef354cbe52d79a90.tar.xz qemu-cf972928fc1f8d5f6ecaacf5ef354cbe52d79a90.zip | |
Merge remote-tracking branch 'remotes/riku/linux-user-for-upstream' into staging
* remotes/riku/linux-user-for-upstream:
linux-user: fix getrusage and wait4 failures with invalid rusage struct
linux-user/elfload.c: Support ARM HWCAP2 flags
linux-user/elfload.c: Fix A64 code which was incorrectly acting like A32
linux-user/elfload.c: Update ARM HWCAP bits
linux-user/elfload.c: Fix incorrect ARM HWCAP bits
linux-user: remove configure option for setting uname release
linux-user: move uname functions to uname.c
linux-user: rename cpu-uname -> uname
linux-user/signal.c: Set fault address in AArch64 signal info
linux-user: avoid using glibc internals in _syscall5 and in definition of target_sigevent struct
linux-user: Handle arches with llseek instead of _llseek
linux-user: Add support for SCM_CREDENTIALS.
linux-user: Move if-elses to a switch statement.
linux-user: Assert stack used for auxvec, envp, argv
linux-user: Add /proc/self/exe open forwarding
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'include')
| -rw-r--r-- | include/elf.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/elf.h b/include/elf.h index 667af6fc63..1599ab22d8 100644 --- a/include/elf.h +++ b/include/elf.h @@ -254,6 +254,7 @@ typedef int64_t Elf64_Sxword; #define AT_SECURE 23 /* boolean, was exec suid-like? */ #define AT_BASE_PLATFORM 24 /* string identifying real platforms */ #define AT_RANDOM 25 /* address of 16 random bytes */ +#define AT_HWCAP2 26 /* extension of AT_HWCAP */ #define AT_EXECFN 31 /* filename of the executable */ #define AT_SYSINFO 32 /* address of kernel entry point */ #define AT_SYSINFO_EHDR 33 /* address of kernel vdso */ |
