Searched defs:joinable (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/base/threading/
H A Dplatform_thread_posix.cc44 joinable(false),
51 bool joinable; member in struct:base::__anon2547::ThreadParams
62 if (!thread_params->joinable)
90 bool CreateThread(size_t stack_size, bool joinable, argument
100 // Pthreads are joinable by default, so only specify the detached
101 // attribute if the thread should be non-joinable.
102 if (!joinable) {
115 params.joinable = joinable;
206 return CreateThread(stack_size, true /* joinable threa
[all...]
H A Dplatform_thread_win.cc48 bool joinable; member in struct:base::__anon2548::ThreadParams
54 if (!thread_params->joinable)
90 // |out_thread_handle| may be NULL, in which case a non-joinable thread is
104 params->joinable = out_thread_handle != NULL;
/external/valgrind/main/drd/
H A Ddrd_pthread_intercepts.c312 * Tell DRD whether 'tid' is a joinable thread or a detached thread.
314 static void DRD_(set_joinable)(const pthread_t tid, const int joinable) argument
316 assert(joinable == 0 || joinable == 1);
318 tid, joinable, 0, 0, 0);
464 * Find out whether the thread will be started as a joinable thread
466 * this means that the new thread will be started as a joinable thread.
H A Ddrd_thread.c519 * joinable threads, not for detached threads.
538 * POSIX thread ID associated with the detached thread. For joinable
591 /** Returns true for joinable threads and false for detached threads. */
599 /** Store the thread mode: joinable or detached. */
606 void DRD_(thread_set_joinable)(const DrdThreadId tid, const Bool joinable) argument
610 tl_assert(!! joinable == joinable);
613 DRD_(g_threadinfo)[tid].detached_posix_thread = ! joinable;

Completed in 748 milliseconds