|
From: <sv...@va...> - 2009-01-07 09:35:15
|
Author: sewardj
Date: 2009-01-07 09:35:10 +0000 (Wed, 07 Jan 2009)
New Revision: 8917
Log:
Handle __NR_socketpair in Ptrcheck.
Modified:
trunk/exp-ptrcheck/h_main.c
Modified: trunk/exp-ptrcheck/h_main.c
===================================================================
--- trunk/exp-ptrcheck/h_main.c 2009-01-07 08:08:41 UTC (rev 8916)
+++ trunk/exp-ptrcheck/h_main.c 2009-01-07 09:35:10 UTC (rev 8917)
@@ -2338,6 +2338,9 @@
# if defined(__NR_socketcall)
ADD(0, __NR_socketcall); /* the nasty x86-linux socket multiplexor */
# endif
+# if defined(__NR_socketpair)
+ ADD(0, __NR_socketpair);
+# endif
# if defined(__NR_statfs64)
ADD(0, __NR_statfs64);
# endif
|