diff options
author | An-Cheng Huang <ancheng@ubnt.com> | 2011-08-09 12:31:41 -0700 |
---|---|---|
committer | Riku Voipio <riku.voipio@linaro.org> | 2011-09-09 10:47:03 +0300 |
commit | 29fb0f25303a76edb100362eaea59b6f74bdb823 (patch) | |
tree | 8be21a4f9389d8ffbee566cd90e7c0161da8438b /linux-user/main.c | |
parent | ff7a981affbbc4f19f6f92143a3ddff90a1363fe (diff) |
linux-user: Fix MIPS indirect syscall handling
Change the number of argument for MIPS sys_syscall from 0 to 8. This
allows arguments for indirect syscalls to be processed correctly.
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: An-Cheng Huang <ancheng@ubnt.com>
Diffstat (limited to 'linux-user/main.c')
-rw-r--r-- | linux-user/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/main.c b/linux-user/main.c index 8910d2c494..3df91f388a 100644 --- a/linux-user/main.c +++ b/linux-user/main.c @@ -1749,7 +1749,7 @@ void cpu_loop(CPUPPCState *env) #define MIPS_SYS(name, args) args, static const uint8_t mips_syscall_args[] = { - MIPS_SYS(sys_syscall , 0) /* 4000 */ + MIPS_SYS(sys_syscall , 8) /* 4000 */ MIPS_SYS(sys_exit , 1) MIPS_SYS(sys_fork , 0) MIPS_SYS(sys_read , 3) |