Lines Matching refs:joinable
42 bool joinable;
48 if (!thread_params->joinable)
55 bool CreateThread(size_t stack_size, bool joinable,
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 thread */,