elf.h: add ELFCOMPRESS_ZSTD
[musl] / src / thread / pthread_kill.c
index a24ecc2..79ddb20 100644 (file)
@@ -1,10 +1,18 @@
 #include "pthread_impl.h"
+#include "lock.h"
 
 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);
+       sigset_t set;
+       /* Block not just app signals, but internal ones too, since
+        * pthread_kill is used to implement pthread_cancel, which
+        * must be async-cancel-safe. */
+       __block_all_sigs(&set);
+       LOCK(t->killlock);
+       r = t->tid ? -__syscall(SYS_tkill, t->tid, sig)
+               : (sig+0U >= _NSIG ? EINVAL : 0);
+       UNLOCK(t->killlock);
+       __restore_sigs(&set);
        return r;
 }