Lines Matching refs:joinable
307 * Tell DRD whether 'tid' is a joinable thread or a detached thread.
309 static void DRD_(set_joinable)(const pthread_t tid, const int joinable)
311 assert(joinable == 0 || joinable == 1);
313 tid, joinable, 0, 0, 0);
459 * Find out whether the thread will be started as a joinable thread
461 * this means that the new thread will be started as a joinable thread.