posix_memalign should fail if size is not a multiple of sizeof(void *)
[musl] / src / thread / pthread_create.c
index d1eea0c..d60c2a4 100644 (file)
@@ -22,12 +22,14 @@ void __pthread_unwind_next(struct __ptcb *cb)
                longjmp((void *)cb->__next->__jb, 1);
        }
 
-       __lock(&self->exitlock);
-
        __pthread_tsd_run_dtors();
 
+       __lock(&self->exitlock);
+
        /* Mark this thread dead before decrementing count */
+       __lock(&self->killlock);
        self->dead = 1;
+       a_store(&self->killlock, 0);
 
        do n = libc.threads_minus_1;
        while (n && a_cas(&libc.threads_minus_1, n, n-1)!=n);