X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fthread%2Fpthread_kill.c;fp=src%2Fthread%2Fpthread_kill.c;h=15f70fb97a18b1b7ca4334e44425a7f943cee0f6;hb=c89f130f39b413d1fb1733166ca63d694685c529;hp=a24ecc20576f846dd64a4e7ae707b3d8d5148cc3;hpb=ea4175e73f9ae886d60add33c4473774e8695062;p=musl 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; }