diff options
Diffstat (limited to 'src/thread/pthread_kill.c')
-rw-r--r-- | src/thread/pthread_kill.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/thread/pthread_kill.c b/src/thread/pthread_kill.c index 9d85fa5b..6448d978 100644 --- a/src/thread/pthread_kill.c +++ b/src/thread/pthread_kill.c @@ -1,7 +1,6 @@ -#define SYSCALL_RETURN_ERRNO #include "pthread_impl.h" int pthread_kill(pthread_t t, int sig) { - return syscall3(__NR_tgkill, t->pid, t->tid, sig); + return __syscall(__NR_tgkill, t->pid, t->tid, sig); } |