diff options
author | Tom Musta <tommusta@gmail.com> | 2014-08-12 13:53:40 -0500 |
---|---|---|
committer | Riku Voipio <riku.voipio@linaro.org> | 2014-08-22 15:06:35 +0300 |
commit | 0903c8be9ee7925863c6c50a2096b6e919be861c (patch) | |
tree | 74f989ee6f0b7f18b8179911d7a41a06a76b748e /linux-user/m68k | |
parent | 67d6d829cdc4e76f64162e6ba8861ee527987bd5 (diff) | |
download | qemu-0903c8be9ee7925863c6c50a2096b6e919be861c.tar.gz qemu-0903c8be9ee7925863c6c50a2096b6e919be861c.tar.bz2 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/m68k')
-rw-r--r-- | linux-user/m68k/syscall.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/linux-user/m68k/syscall.h b/linux-user/m68k/syscall.h index 889eaf7323..f8553f8c11 100644 --- a/linux-user/m68k/syscall.h +++ b/linux-user/m68k/syscall.h @@ -18,4 +18,6 @@ struct target_pt_regs { #define UNAME_MACHINE "m68k" #define UNAME_MINIMUM_RELEASE "2.6.32" +#define TARGET_MINSIGSTKSZ 2048 + void do_m68k_simcall(CPUM68KState *, int); |