|
From: <sv...@va...> - 2009-02-23 17:19:04
|
Author: sewardj
Date: 2009-02-23 17:18:58 +0000 (Mon, 23 Feb 2009)
New Revision: 9244
Log:
merge r9243:
(exp-ptrcheck) handle sys_fallocate and sys_getresuid32, and
make suppressions for ld.so be a bit more aggressive
Modified:
branches/VALGRIND_3_4_BRANCH/exp-ptrcheck.supp
branches/VALGRIND_3_4_BRANCH/exp-ptrcheck/h_main.c
Modified: branches/VALGRIND_3_4_BRANCH/exp-ptrcheck/h_main.c
===================================================================
--- branches/VALGRIND_3_4_BRANCH/exp-ptrcheck/h_main.c 2009-02-23 16:56:15 UTC (rev 9243)
+++ branches/VALGRIND_3_4_BRANCH/exp-ptrcheck/h_main.c 2009-02-23 17:18:58 UTC (rev 9244)
@@ -2205,6 +2205,7 @@
ADD(0, __NR_exit); /* hmm, why are we still alive? */
ADD(0, __NR_exit_group);
ADD(0, __NR_fadvise64);
+ ADD(0, __NR_fallocate);
ADD(0, __NR_fchmod);
ADD(0, __NR_fchown);
# if defined(__NR_fchown32)
@@ -2252,6 +2253,9 @@
ADD(0, __NR_getppid);
ADD(0, __NR_getresgid);
ADD(0, __NR_getresuid);
+# if defined(__NR_getresuid32)
+ ADD(0, __NR_getresuid32);
+# endif
ADD(0, __NR_getrlimit);
ADD(0, __NR_getrusage);
# if defined(__NR_getsockname)
Modified: branches/VALGRIND_3_4_BRANCH/exp-ptrcheck.supp
===================================================================
--- branches/VALGRIND_3_4_BRANCH/exp-ptrcheck.supp 2009-02-23 16:56:15 UTC (rev 9243)
+++ branches/VALGRIND_3_4_BRANCH/exp-ptrcheck.supp 2009-02-23 17:18:58 UTC (rev 9244)
@@ -17,7 +17,6 @@
exp-ptrcheck:Arith
obj:/*lib*/ld-2.*so*
obj:/*lib*/ld-2.*so*
- obj:/*lib*/ld-2.*so*
}
{
@@ -40,7 +39,6 @@
exp-ptrcheck:Heap
obj:/*lib*/ld-2.*so*
obj:/*lib*/ld-2.*so*
- obj:/*lib*/ld-2.*so*
}
{
|