diff options
author | Tom Musta | 2014-08-12 20:53:40 +0200 |
---|---|---|
committer | Riku Voipio | 2014-08-22 14:06:35 +0200 |
commit | 0903c8be9ee7925863c6c50a2096b6e919be861c (patch) | |
tree | 74f989ee6f0b7f18b8179911d7a41a06a76b748e /linux-user/x86_64 | |
parent | linux-user: Move get_ppc64_abi (diff) | |
download | qemu-0903c8be9ee7925863c6c50a2096b6e919be861c.tar.gz qemu-0903c8be9ee7925863c6c50a2096b6e919be861c.tar.xz qemu-0903c8be9ee7925863c6c50a2096b6e919be861c.zip |
linux-user: Minimum Sig Handler Stack Size for PPC64 ELF V2
The ELF V2 ABI for PPC64 defines MINSIGSTKSZ as 4096 bytes whereas it was
2048 previously.
Signed-off-by: Tom Musta <tommusta@gmail.com>
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
Diffstat (limited to 'linux-user/x86_64')
-rw-r--r-- | linux-user/x86_64/syscall.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/linux-user/x86_64/syscall.h b/linux-user/x86_64/syscall.h index e03b5a0cfc..5828b91026 100644 --- a/linux-user/x86_64/syscall.h +++ b/linux-user/x86_64/syscall.h @@ -97,3 +97,4 @@ struct target_msqid64_ds { #define TARGET_ARCH_SET_FS 0x1002 #define TARGET_ARCH_GET_FS 0x1003 #define TARGET_ARCH_GET_GS 0x1004 +#define TARGET_MINSIGSTKSZ 2048 |