summaryrefslogtreecommitdiff
path: root/src/thread/pthread_kill.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread/pthread_kill.c')
-rw-r--r--src/thread/pthread_kill.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread/pthread_kill.c b/src/thread/pthread_kill.c
index 17aa5c4b..36e9b6da 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(SYS_tgkill, t->pid, t->tid, sig);
}