mirror of
https://github.com/qemu/qemu.git
synced 2024-11-29 06:43:37 +08:00
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>
This commit is contained in:
parent
8f04eeb3c0
commit
053ebb2726
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user