From: Paul Burton Date: Sun, 22 Jun 2014 10:25:38 +0000 (+0100) Subject: linux-user: support strace of epoll_create1 X-Git-Tag: qemu-xen-4.6.0-rc1~343^2~5 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=0fa82d39c8afbaaa2fb4cdbb30f36c3dc76dad8e;p=qemu-upstream-4.6-testing.git linux-user: support strace of epoll_create1 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 Signed-off-by: Riku Voipio --- diff --git a/linux-user/strace.list b/linux-user/strace.list index cf5841af6..fcb258d34 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