Home
last modified time | relevance | path

Searched refs:THREAD_DETACHED (Results 1 – 6 of 6) sorted by relevance

/bionic/libc/bionic/
Dpthread_detach.cpp42 !atomic_compare_exchange_weak(&thread->join_state, &old_state, THREAD_DETACHED)) { in pthread_detach()
Dpthread_join.cpp49 if (old_state == THREAD_DETACHED || old_state == THREAD_JOINED) { in pthread_join()
Dpthread_exit.cpp104 if (old_state == THREAD_DETACHED) { in pthread_exit()
Dpthread_internal.h53 THREAD_DETACHED enumerator
Dpthread_create.cpp109 atomic_init(&thread->join_state, THREAD_DETACHED); in __init_thread()
292 atomic_store(&thread->join_state, THREAD_DETACHED); in pthread_create()
Dpthread_attr.cpp204 if (atomic_load(&thread->join_state) == THREAD_DETACHED) { in pthread_getattr_np()