Home | History | Annotate | Download | only in threading

Lines Matching defs:joinable

44         joinable(false),
51 bool joinable;
62 if (!thread_params->joinable)
90 bool CreateThread(size_t stack_size, bool joinable,
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 thread */,
215 return CreateThread(stack_size, true, // joinable thread
224 bool result = CreateThread(stack_size, false /* non-joinable thread */,