From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51144) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WyUAY-00053l-G7 for qemu-devel@nongnu.org; Sat, 21 Jun 2014 18:54:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WyUAR-0005bH-Hv for qemu-devel@nongnu.org; Sat, 21 Jun 2014 18:53:58 -0400 Received: from mail-wi0-x22c.google.com ([2a00:1450:400c:c05::22c]:55181) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WyUAR-0005ar-B1 for qemu-devel@nongnu.org; Sat, 21 Jun 2014 18:53:51 -0400 Received: by mail-wi0-f172.google.com with SMTP id hi2so2355953wib.5 for ; Sat, 21 Jun 2014 15:53:48 -0700 (PDT) Sender: Paul Burton From: Paul Burton Date: Sat, 21 Jun 2014 23:53:01 +0100 Message-Id: <1403391191-18603-7-git-send-email-paul@archlinuxmips.org> In-Reply-To: <1403391191-18603-1-git-send-email-paul@archlinuxmips.org> References: <1403391191-18603-1-git-send-email-paul@archlinuxmips.org> Subject: [Qemu-devel] [PATCH v2 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 --- Changes in v2: - None. --- 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