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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/thread/pthread_kill.c b/src/thread/pthread_kill.c
index acdb1ea6..f0903420 100644
--- a/src/thread/pthread_kill.c
+++ b/src/thread/pthread_kill.c
@@ -3,8 +3,8 @@
int pthread_kill(pthread_t t, int sig)
{
int r;
- __lock(t->killlock);
+ LOCK(t->killlock);
r = t->dead ? ESRCH : -__syscall(SYS_tkill, t->tid, sig);
- __unlock(t->killlock);
+ UNLOCK(t->killlock);
return r;
}