Home | History | Annotate | Download | only in librumpuser

Lines Matching refs:joinable

271 	/* if joinable, gate until we are allowed to exit */
300 join_thread(struct thread *joinable)
305 assert(joinable->flags & THREAD_MUSTJOIN);
308 while (! (joinable->flags & THREAD_JOINED)) {
311 jw.jw_wanted = joinable;
319 assert(joinable->flags & THREAD_JOINED);
320 joinable->flags &= ~THREAD_MUSTJOIN;
322 wake(joinable);
641 int joinable, int pri, int cpuidx, void **tptr)
655 if (thr && joinable)