summaryrefslogblamecommitdiff
path: root/src/thread/pthread_detach.c
blob: 16b0552d6281a13d99101aed9a736da844d50d8d (plain) (tree)
1
2
3
4
5
6
7
8
9
                         
                    
 
                                        
 


                                                                            
                                            

                 

                                             
                                          
#include "pthread_impl.h"
#include <threads.h>

static int __pthread_detach(pthread_t t)
{
	/* 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_DYNAMIC) != DT_JOINABLE)
		return __pthread_join(t, 0);
	return 0;
}

weak_alias(__pthread_detach, pthread_detach);
weak_alias(__pthread_detach, thrd_detach);