Searched refs:THREAD_NOT_JOINED (Results 1 – 5 of 5) sorted by relevance
42 ThreadJoinState old_state = THREAD_NOT_JOINED; in pthread_detach()43 while (old_state == THREAD_NOT_JOINED && in pthread_detach()47 if (old_state == THREAD_NOT_JOINED) { in pthread_detach()
48 ThreadJoinState old_state = THREAD_NOT_JOINED; in pthread_join()49 while ((old_state == THREAD_NOT_JOINED || old_state == THREAD_EXITED_NOT_JOINED) && in pthread_join()
101 ThreadJoinState old_state = THREAD_NOT_JOINED; in pthread_exit()102 while (old_state == THREAD_NOT_JOINED && in pthread_exit()
57 THREAD_NOT_JOINED, enumerator
163 atomic_init(&thread->join_state, THREAD_NOT_JOINED); in __init_thread()