Lines Matching full:joinable
40 : delegate(NULL), joinable(false), priority(ThreadPriority::NORMAL) {}
43 bool joinable;
56 if (!thread_params->joinable)
78 bool joinable,
88 // Pthreads are joinable by default, so only specify the detached
89 // attribute if the thread should be non-joinable.
90 if (!joinable)
102 params->joinable = joinable;
187 return CreateThread(stack_size, true, // joinable thread
195 bool result = CreateThread(stack_size, false /* non-joinable thread */,