summaryrefslogtreecommitdiffstats
path: root/linux-user
diff options
context:
space:
mode:
authorRichard Henderson2022-06-02 03:34:00 +0200
committerLaurent Vivier2022-06-02 09:35:03 +0200
commitdc3e83d5b17ee896be0478d0231a6ed7f966e0e0 (patch)
tree450fb2f85241b5b3f6a1f4ed0eae5092f65256f9 /linux-user
parentlinux-user/strace: Use is_error in print_syscall_err (diff)
downloadqemu-dc3e83d5b17ee896be0478d0231a6ed7f966e0e0.tar.gz
qemu-dc3e83d5b17ee896be0478d0231a6ed7f966e0e0.tar.xz
qemu-dc3e83d5b17ee896be0478d0231a6ed7f966e0e0.zip
linux-user/strace: Adjust get_thread_area for m68k
Unlike i386, m68k get_thread_area has no arguments. Reviewed-by: Laurent Vivier <laurent@vivier.eu> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20220602013401.303699-17-richard.henderson@linaro.org> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'linux-user')
-rw-r--r--linux-user/strace.list5
1 files changed, 5 insertions, 0 deletions
diff --git a/linux-user/strace.list b/linux-user/strace.list
index 278596acd1..72e17b1acf 100644
--- a/linux-user/strace.list
+++ b/linux-user/strace.list
@@ -384,8 +384,13 @@
{ TARGET_NR_getsockopt, "getsockopt" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_get_thread_area
+#if defined(TARGET_I386) && defined(TARGET_ABI32)
{ TARGET_NR_get_thread_area, "get_thread_area", "%s(0x"TARGET_ABI_FMT_lx")",
NULL, NULL },
+#elif defined(TARGET_M68K)
+{ TARGET_NR_get_thread_area, "get_thread_area" , "%s()",
+ NULL, print_syscall_ret_addr },
+#endif
#endif
#ifdef TARGET_NR_gettid
{ TARGET_NR_gettid, "gettid" , "%s()", NULL, NULL },