Home
last modified time | relevance | path

Searched refs:THREAD_NOT_JOINED (Results 1 – 5 of 5) sorted by relevance

/bionic/libc/bionic/
Dpthread_detach.cpp40 ThreadJoinState old_state = THREAD_NOT_JOINED; in pthread_detach()
41 while (old_state == THREAD_NOT_JOINED && in pthread_detach()
45 if (old_state == THREAD_NOT_JOINED) { in pthread_detach()
Dpthread_join.cpp44 ThreadJoinState old_state = THREAD_NOT_JOINED; in pthread_join()
45 while ((old_state == THREAD_NOT_JOINED || old_state == THREAD_EXITED_NOT_JOINED) && in pthread_join()
Dpthread_exit.cpp94 ThreadJoinState old_state = THREAD_NOT_JOINED; in pthread_exit()
95 while (old_state == THREAD_NOT_JOINED && in pthread_exit()
Dpthread_internal.h48 THREAD_NOT_JOINED, enumerator
Dpthread_create.cpp97 atomic_init(&thread->join_state, THREAD_NOT_JOINED); in __init_thread()