|
From: <sv...@va...> - 2008-08-04 22:14:58
|
Author: sewardj
Date: 2008-08-04 23:15:05 +0100 (Mon, 04 Aug 2008)
New Revision: 8513
Log:
Handle a couple more syscalls.
Modified:
branches/PTRCHECK/exp-ptrcheck/pc_main.c
Modified: branches/PTRCHECK/exp-ptrcheck/pc_main.c
===================================================================
--- branches/PTRCHECK/exp-ptrcheck/pc_main.c 2008-08-04 20:39:57 UTC (rev 8512)
+++ branches/PTRCHECK/exp-ptrcheck/pc_main.c 2008-08-04 22:15:05 UTC (rev 8513)
@@ -2381,6 +2381,7 @@
case __NR_rmdir:
case __NR_rt_sigaction:
case __NR_rt_sigprocmask:
+ case __NR_rt_sigreturn: /* not sure if we should see this or not */
case __NR_sched_get_priority_max:
case __NR_sched_get_priority_min:
case __NR_sched_getparam:
@@ -2398,6 +2399,7 @@
case __NR_set_tid_address:
case __NR_setitimer:
case __NR_setrlimit:
+ case __NR_setsid:
# if defined(__NR_setsockopt)
case __NR_setsockopt:
# endif
@@ -2429,6 +2431,7 @@
case __NR_sysinfo:
case __NR_tgkill:
case __NR_time:
+ case __NR_times:
case __NR_truncate:
# if defined(__NR_truncate64)
case __NR_truncate64:
|