From: Nicholas Nethercote Date: Sat, 11 Jun 2005 17:19:18 +0000 (+0000) Subject: wibble X-Git-Tag: svn/VALGRIND_3_0_0~426 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cfe3bf6bd3b0b27c38f30a433edaa1e251e0b67f;p=thirdparty%2Fvalgrind.git wibble git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3892 --- diff --git a/coregrind/m_libcsignal.c b/coregrind/m_libcsignal.c index 23206350d5..3e1beccf97 100644 --- a/coregrind/m_libcsignal.c +++ b/coregrind/m_libcsignal.c @@ -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);