fix some obscure header type size/alignment issues
[musl] / src / thread / pthread_kill.c
index a24ecc2..d9a5096 100644 (file)
@@ -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_tgkill, t->pid, t->tid, sig);
-       a_store(&t->killlock, 0);
+       __unlock(t->killlock);
        return r;
 }