diff options
author | Ed Swierk <eswierk@skyportsystems.com> | 2014-12-16 12:55:18 -0800 |
---|---|---|
committer | Riku Voipio <riku.voipio@linaro.org> | 2015-01-27 22:33:57 +0200 |
commit | ec355f15476fe91b95c4326836d3fe572d8075e1 (patch) | |
tree | 54df79d80e93aececc63e127840ae35cf2bc0002 /linux-user | |
parent | 9c6bf9c7d71d7da18a024182b69569969449d6f9 (diff) |
mips64-linux-user: Fix definition of struct sigaltstack
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 <eswierk@skyportsystems.com>
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
Diffstat (limited to 'linux-user')
-rw-r--r-- | linux-user/mips64/target_signal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/mips64/target_signal.h b/linux-user/mips64/target_signal.h index 6e1dc8b6e6..5fb6a2ccfc 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; |