mirror of
https://github.com/qemu/qemu.git
synced 2024-11-28 22:33:36 +08:00
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>
This commit is contained in:
parent
7c75571c07
commit
dc3e83d5b1
@ -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 },
|
||||
|
Loading…
Reference in New Issue
Block a user