From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51843) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WwD94-00051E-3c for qemu-devel@nongnu.org; Sun, 15 Jun 2014 12:19:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WwD8y-00065A-6r for qemu-devel@nongnu.org; Sun, 15 Jun 2014 12:19:02 -0400 Received: from mail-wg0-x22c.google.com ([2a00:1450:400c:c00::22c]:38763) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WwD8y-000656-0U for qemu-devel@nongnu.org; Sun, 15 Jun 2014 12:18:56 -0400 Received: by mail-wg0-f44.google.com with SMTP id x13so4621352wgg.27 for ; Sun, 15 Jun 2014 09:18:55 -0700 (PDT) Sender: Paul Burton From: Paul Burton Date: Sun, 15 Jun 2014 17:18:23 +0100 Message-Id: <1402849113-11402-7-git-send-email-paul@archlinuxmips.org> In-Reply-To: <1402849113-11402-1-git-send-email-paul@archlinuxmips.org> References: <1402849113-11402-1-git-send-email-paul@archlinuxmips.org> Subject: [Qemu-devel] [PATCH 06/16] linux-user: support strace of epoll_create1 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Riku Voipio , Paul Burton Add the epoll_create1 syscall to strace.list in order to display that syscall when it occurs, rather than a message about the syscall being unknown despite QEMU already implementing support for it. Signed-off-by: Paul Burton --- linux-user/strace.list | 3 +++ 1 file changed, 3 insertions(+) diff --git a/linux-user/strace.list b/linux-user/strace.list index cf5841a..fcb258d 100644 --- a/linux-user/strace.list +++ b/linux-user/strace.list @@ -114,6 +114,9 @@ #ifdef TARGET_NR_epoll_create { TARGET_NR_epoll_create, "epoll_create" , NULL, NULL, NULL }, #endif +#ifdef TARGET_NR_epoll_create1 +{ TARGET_NR_epoll_create1, "epoll_create1" , NULL, NULL, NULL }, +#endif #ifdef TARGET_NR_epoll_ctl { TARGET_NR_epoll_ctl, "epoll_ctl" , NULL, NULL, NULL }, #endif -- 2.0.0