summary refs log tree commit diff stats
path: root/linux-user/main.c
diff options
context:
space:
mode:
authorWesley W. Terpstra <terpstra@debian.org>2011-07-12 14:32:31 +0300
committerRiku Voipio <riku.voipio@linaro.org>2011-07-12 14:32:31 +0300
commit053ebb2726c17af6133cfcc8de2193121a107eb5 (patch)
tree93bee68f7b2c436408a20a4ab1cb70e752664eac /linux-user/main.c
parent8f04eeb3c094bf370f131e50b7e3da85d08d518f (diff)
downloadfocaccia-qemu-053ebb2726c17af6133cfcc8de2193121a107eb5.tar.gz
focaccia-qemu-053ebb2726c17af6133cfcc8de2193121a107eb5.zip
mips: sigaltstack args
The syscall sigaltstack takes two parameters, not zero. This patch
should have no impact as only values above 4 influence the runtime
behaviour. Nevertheless, it is wrong.

Signed-off-by: Wesley W. Terpstra <terpstra@debian.org>
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
Diffstat (limited to 'linux-user/main.c')
-rw-r--r--linux-user/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/main.c b/linux-user/main.c
index 48f0443191..d695610349 100644
--- a/linux-user/main.c
+++ b/linux-user/main.c
@@ -1875,7 +1875,7 @@ static const uint8_t mips_syscall_args[] = {
 	MIPS_SYS(sys_getcwd	, 2)
 	MIPS_SYS(sys_capget	, 2)
 	MIPS_SYS(sys_capset	, 2)	/* 4205 */
-	MIPS_SYS(sys_sigaltstack	, 0)
+	MIPS_SYS(sys_sigaltstack	, 2)
 	MIPS_SYS(sys_sendfile	, 4)
 	MIPS_SYS(sys_ni_syscall	, 0)
 	MIPS_SYS(sys_ni_syscall	, 0)