X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;ds=sidebyside;f=src%2Fthread%2Fpthread_detach.c;h=77772af2c6349fca2cd66860c71e910c3138b101;hb=377218cb963aa20c6eb91781b0c79ad606631e6f;hp=134826078df3f7805ea5f2e3a85088108dfc3ef5;hpb=c1e27367a9b26b9baac0f37a12349fc36567c8b6;p=musl diff --git a/src/thread/pthread_detach.c b/src/thread/pthread_detach.c index 13482607..77772af2 100644 --- a/src/thread/pthread_detach.c +++ b/src/thread/pthread_detach.c @@ -1,16 +1,12 @@ #include "pthread_impl.h" #include -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; }