git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3892
This commit is contained in:
Nicholas Nethercote 2005-06-11 17:19:18 +00:00
parent 82860347b1
commit cfe3bf6bd3

View File

@ -206,7 +206,7 @@ Int VG_(tkill)( ThreadId tid, Int signo )
#if 0
/* This isn't right because the client may create a process
structure with multiple thread groups */
res = VG_(do_syscall)(__NR_tgkill, VG_(getpid)(), tid, signo);
res = VG_(do_syscall3)(__NR_tgkill, VG_(getpid)(), tid, signo);
#endif
res = VG_(do_syscall2)(__NR_tkill, tid, signo);