mirror of https://gitee.com/openkylin/qemu.git
linux-user: update get_thread_area/set_thread_area strace
int get_thread_area(struct user_desc *u_info); int set_thread_area(struct user_desc *u_info); Signed-off-by: Laurent Vivier <laurent@vivier.eu> Signed-off-by: Riku Voipio <riku.voipio@linaro.org> Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
84bd828429
commit
9a6309e7fa
|
@ -337,7 +337,8 @@
|
|||
{ TARGET_NR_getsockopt, "getsockopt" , NULL, NULL, NULL },
|
||||
#endif
|
||||
#ifdef TARGET_NR_get_thread_area
|
||||
{ TARGET_NR_get_thread_area, "get_thread_area" , NULL, NULL, NULL },
|
||||
{ TARGET_NR_get_thread_area, "get_thread_area", "%s(0x"TARGET_ABI_FMT_lx")",
|
||||
NULL, NULL },
|
||||
#endif
|
||||
#ifdef TARGET_NR_gettid
|
||||
{ TARGET_NR_gettid, "gettid" , NULL, NULL, NULL },
|
||||
|
@ -1234,7 +1235,8 @@
|
|||
{ TARGET_NR_setsockopt, "setsockopt" , NULL, NULL, NULL },
|
||||
#endif
|
||||
#ifdef TARGET_NR_set_thread_area
|
||||
{ TARGET_NR_set_thread_area, "set_thread_area" , NULL, NULL, NULL },
|
||||
{ TARGET_NR_set_thread_area, "set_thread_area", "%s(0x"TARGET_ABI_FMT_lx")",
|
||||
NULL, NULL },
|
||||
#endif
|
||||
#ifdef TARGET_NR_set_tid_address
|
||||
{ TARGET_NR_set_tid_address, "set_tid_address" , NULL, NULL, NULL },
|
||||
|
|
Loading…
Reference in New Issue