]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Support epoll_create and epoll_create1 in ptrcheck. Fixes #189762.
authorTom Hughes <tom@compton.nu>
Mon, 27 Jul 2009 14:22:25 +0000 (14:22 +0000)
committerTom Hughes <tom@compton.nu>
Mon, 27 Jul 2009 14:22:25 +0000 (14:22 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10635

exp-ptrcheck/h_main.c

index 0163ea4bcfc7fb5e670c3fbf6c3cc82dc7f67fa2..7a91d3545947d381c8fb4d255bb8dae7a97f3f68 100644 (file)
@@ -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);