]> Git Repo - qemu.git/commitdiff
linux-user/mips64: Support o32 ABI syscalls
authorPhilippe Mathieu-Daudé <[email protected]>
Thu, 19 Nov 2020 16:17:08 +0000 (17:17 +0100)
committerLaurent Vivier <[email protected]>
Sat, 13 Feb 2021 21:50:49 +0000 (22:50 +0100)
o32 ABI syscalls start at offset 4000.

Signed-off-by: Philippe Mathieu-Daudé <[email protected]>
Reviewed-by: Richard Henderson <[email protected]>
Reviewed-by: Laurent Vivier <[email protected]>
Message-Id: <20201119161710.1985083[email protected]>
Signed-off-by: Laurent Vivier <[email protected]>
linux-user/mips64/syscall_nr.h

index 672f2fa51cbaf280cce7bd789cd68ae1e9cd4ea8..6579421fa639f94bb697a364fa56d50cdc1d16a2 100644 (file)
@@ -1,4 +1,7 @@
-#ifdef TARGET_ABI_MIPSN32
+#if defined(TARGET_ABI_MIPSO32)
+#define TARGET_SYSCALL_OFFSET 4000
+#include "syscall_o32_nr.h"
+#elif defined(TARGET_ABI_MIPSN32)
 #define TARGET_SYSCALL_OFFSET 6000
 #include "syscall_n32_nr.h"
 #else
This page took 0.026379 seconds and 4 git commands to generate.