From: Tom Hughes Date: Mon, 27 Jul 2009 14:22:25 +0000 (+0000) Subject: Support epoll_create and epoll_create1 in ptrcheck. Fixes #189762. X-Git-Tag: svn/VALGRIND_3_5_0~213 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7e1ba6bac47d8f9807b995e47878e227458f80d4;p=thirdparty%2Fvalgrind.git Support epoll_create and epoll_create1 in ptrcheck. Fixes #189762. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10635 --- diff --git a/exp-ptrcheck/h_main.c b/exp-ptrcheck/h_main.c index 0163ea4bcf..7a91d35459 100644 --- a/exp-ptrcheck/h_main.c +++ b/exp-ptrcheck/h_main.c @@ -2206,6 +2206,8 @@ static void setup_post_syscall_table ( void ) ADD(0, __NR_creat); ADD(0, __NR_dup); ADD(0, __NR_dup2); + ADD(0, __NR_epoll_create); + ADD(0, __NR_epoll_create1); 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);