diff options
Diffstat (limited to 'src/thread/pthread_kill.c')
-rw-r--r-- | src/thread/pthread_kill.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread/pthread_kill.c b/src/thread/pthread_kill.c index 6448d978..17aa5c4b 100644 --- a/src/thread/pthread_kill.c +++ b/src/thread/pthread_kill.c @@ -2,5 +2,5 @@ int pthread_kill(pthread_t t, int sig) { - return __syscall(__NR_tgkill, t->pid, t->tid, sig); + return -__syscall(__NR_tgkill, t->pid, t->tid, sig); } |