fix race condition in pthread_kill
[musl] / src / thread / pthread_kill.c
index 36e9b6d..a24ecc2 100644 (file)
@@ -2,5 +2,9 @@
 
 int pthread_kill(pthread_t t, int sig)
 {
 
 int pthread_kill(pthread_t t, int sig)
 {
-       return -__syscall(SYS_tgkill, t->pid, t->tid, sig);
+       int r;
+       __lock(&t->killlock);
+       r = t->dead ? ESRCH : -__syscall(SYS_tgkill, t->pid, t->tid, sig);
+       a_store(&t->killlock, 0);
+       return r;
 }
 }