summaryrefslogtreecommitdiff
path: root/src/thread/pthread_kill.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-07-12 11:14:12 -0400
committerRich Felker <dalias@aerifal.cx>2012-07-12 11:14:12 -0400
commitc89f130f39b413d1fb1733166ca63d694685c529 (patch)
treecce963f68e6ed9baf77b630db6e218dbc6adfb17 /src/thread/pthread_kill.c
parentea4175e73f9ae886d60add33c4473774e8695062 (diff)
downloadmusl-c89f130f39b413d1fb1733166ca63d694685c529.tar.gz
fix pthread_kill unlocking
it had not been updated for the futex-based locks
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 a24ecc20..15f70fb9 100644
--- a/src/thread/pthread_kill.c
+++ b/src/thread/pthread_kill.c
@@ -5,6 +5,6 @@ int pthread_kill(pthread_t t, int sig)
int r;
__lock(&t->killlock);
r = t->dead ? ESRCH : -__syscall(SYS_tgkill, t->pid, t->tid, sig);
- a_store(&t->killlock, 0);
+ __unlock(&t->killlock);
return r;
}