From: Tom Hughes Date: Tue, 27 Oct 2009 09:31:39 +0000 (+0000) Subject: Add epoll_ctl, epoll_pwait and epoll_wait to exp-ptrcheck. Fixes #207668. X-Git-Tag: svn/VALGRIND_3_6_0~501 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=77655c4f0e9764255d3681dca989018a532c9bb7;p=thirdparty%2Fvalgrind.git Add epoll_ctl, epoll_pwait and epoll_wait to exp-ptrcheck. Fixes #207668. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10908 --- diff --git a/exp-ptrcheck/h_main.c b/exp-ptrcheck/h_main.c index 235b6589f9..9930addc28 100644 --- a/exp-ptrcheck/h_main.c +++ b/exp-ptrcheck/h_main.c @@ -2208,6 +2208,9 @@ static void setup_post_syscall_table ( void ) ADD(0, __NR_dup2); ADD(0, __NR_epoll_create); ADD(0, __NR_epoll_create1); + ADD(0, __NR_epoll_ctl); + ADD(0, __NR_epoll_pwait); + ADD(0, __NR_epoll_wait); ADD(0, __NR_execve); /* presumably we see this because the call failed? */ ADD(0, __NR_exit); /* hmm, why are we still alive? */ ADD(0, __NR_exit_group);