|
From: <sv...@va...> - 2010-02-15 09:58:18
|
Author: sewardj
Date: 2010-02-15 09:58:10 +0000 (Mon, 15 Feb 2010)
New Revision: 11043
Log:
Handle sys_inotify_init1.
Modified:
trunk/exp-ptrcheck/h_main.c
Modified: trunk/exp-ptrcheck/h_main.c
===================================================================
--- trunk/exp-ptrcheck/h_main.c 2010-02-15 09:57:49 UTC (rev 11042)
+++ trunk/exp-ptrcheck/h_main.c 2010-02-15 09:58:10 UTC (rev 11043)
@@ -2331,6 +2331,9 @@
ADD(0, __NR_getxattr);
ADD(0, __NR_inotify_add_watch);
ADD(0, __NR_inotify_init);
+# if defined(__NR_inotify_init1)
+ ADD(0, __NR_inotify_init1);
+# endif
ADD(0, __NR_inotify_rm_watch);
ADD(0, __NR_ioctl); // ioctl -- assuming no pointers returned
ADD(0, __NR_ioprio_get);
|