From: Ed Swierk <eswi...@skyportsystems.com>

Without this fix, qemu segfaults when emulating the sigaltstack syscall,
because it incorrectly treats the ss_flags field as 64 bits rather than 32
bits.

Signed-off-by: Ed Swierk <eswi...@skyportsystems.com>
Signed-off-by: Riku Voipio <riku.voi...@linaro.org>
---
 linux-user/mips64/target_signal.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/linux-user/mips64/target_signal.h 
b/linux-user/mips64/target_signal.h
index 6e1dc8b..5fb6a2c 100644
--- a/linux-user/mips64/target_signal.h
+++ b/linux-user/mips64/target_signal.h
@@ -8,7 +8,7 @@
 typedef struct target_sigaltstack {
        abi_long ss_sp;
        abi_ulong ss_size;
-       abi_long ss_flags;
+       abi_int ss_flags;
 } target_stack_t;
 
 
-- 
2.1.4


Reply via email to