From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37283) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bAk26-00076j-Un for qemu-devel@nongnu.org; Wed, 08 Jun 2016 16:24:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bAk1z-0003tx-Ix for qemu-devel@nongnu.org; Wed, 08 Jun 2016 16:24:57 -0400 Received: from mout.kundenserver.de ([212.227.17.13]:61221) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bAk1z-0003tf-9R for qemu-devel@nongnu.org; Wed, 08 Jun 2016 16:24:51 -0400 From: Laurent Vivier Date: Wed, 8 Jun 2016 22:24:32 +0200 Message-Id: <1465417472-11359-6-git-send-email-laurent@vivier.eu> In-Reply-To: <1465417472-11359-1-git-send-email-laurent@vivier.eu> References: <1465417472-11359-1-git-send-email-laurent@vivier.eu> Subject: [Qemu-devel] [PATCH 5/5] linux-user: update get_thread_area/set_thread_area strace List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Riku Voipio Cc: qemu-devel@nongnu.org, Laurent Vivier int get_thread_area(struct user_desc *u_info); int set_thread_area(struct user_desc *u_info); Signed-off-by: Laurent Vivier --- linux-user/strace.list | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linux-user/strace.list b/linux-user/strace.list index 7c54dc6..9c0259c 100644 --- a/linux-user/strace.list +++ b/linux-user/strace.list @@ -337,7 +337,7 @@ { 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(%p)", NULL, NULL }, #endif #ifdef TARGET_NR_gettid { TARGET_NR_gettid, "gettid" , NULL, NULL, NULL }, @@ -1234,7 +1234,7 @@ { 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(%p)", NULL, NULL }, #endif #ifdef TARGET_NR_set_tid_address { TARGET_NR_set_tid_address, "set_tid_address" , NULL, NULL, NULL }, -- 2.5.5