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

/external/chromium/base/threading/
H A Dplatform_thread_posix.cc42 bool joinable; member in struct:base::__anon1633::ThreadParams
48 if (!thread_params->joinable)
55 bool CreateThread(size_t stack_size, bool joinable, argument
66 // Pthreads are joinable by default, so only specify the detached attribute if
67 // the thread should be non-joinable.
68 if (!joinable) {
108 params->joinable = joinable;
203 return CreateThread(stack_size, true /* joinable thread */,
211 bool result = CreateThread(stack_size, false /* non-joinable threa
[all...]
H A Dplatform_thread_win.cc28 bool joinable; member in struct:base::__anon1634::ThreadParams
34 if (!thread_params->joinable)
42 // |out_thread_handle| may be NULL, in which case a non-joinable thread is
57 params->joinable = out_thread_handle != NULL;
/external/valgrind/main/drd/
H A Ddrd_pthread_intercepts.c293 * Tell DRD whether 'tid' is a joinable thread or a detached thread.
295 static void DRD_(set_joinable)(const pthread_t tid, const int joinable) argument
297 assert(joinable == 0 || joinable == 1);
299 tid, joinable, 0, 0, 0);
443 * Find out whether the thread will be started as a joinable thread
445 * this means that the new thread will be started as a joinable thread.
H A Ddrd_thread.c517 * joinable threads, not for detached threads.
536 * POSIX thread ID associated with the detached thread. For joinable
589 /** Returns true for joinable threads and false for detached threads. */
597 /** Store the thread mode: joinable or detached. */
598 void DRD_(thread_set_joinable)(const DrdThreadId tid, const Bool joinable) argument
602 tl_assert(!! joinable == joinable);
605 DRD_(g_threadinfo)[tid].detached_posix_thread = ! joinable;

Completed in 92 milliseconds