track all live threads in an AS-safe, fully-consistent linked list
[musl] / src / thread / pthread_detach.c
index 1348260..77772af 100644 (file)
@@ -1,16 +1,12 @@
 #include "pthread_impl.h"
 #include <threads.h>
 
-int __pthread_join(pthread_t, void **);
-
 static int __pthread_detach(pthread_t t)
 {
-       /* Cannot detach a thread that's already exiting */
-       if (a_swap(t->exitlock, 1))
+       /* If the cas fails, detach state is either already-detached
+        * or exiting/exited, and pthread_join will trap or cleanup. */
+       if (a_cas(&t->detach_state, DT_JOINABLE, DT_DETACHED) != DT_JOINABLE)
                return __pthread_join(t, 0);
-       t->detached = 2;
-       a_store(t->exitlock, 0);
-       __wake(t->exitlock, 1, 1);
        return 0;
 }