Home
last modified time | relevance | path

Searched refs:td_turnstile (Results 1 – 3 of 3) sorted by relevance

/f-stack/freebsd/kern/
H A Dsubr_turnstile.c332 if (td->td_turnstile != NULL) in turnstile_adjust_thread()
394 thread0.td_turnstile = NULL; in init_turnstiles()
583 ts = curthread->td_turnstile; in turnstile_trywait()
621 if (ts == curthread->td_turnstile) in turnstile_unlock()
643 if (ts == curthread->td_turnstile) in turnstile_cancel()
709 MPASS(ts != curthread->td_turnstile); in turnstile_claim()
759 if (ts == td->td_turnstile) { in turnstile_wait()
793 MPASS(td->td_turnstile != NULL); in turnstile_wait()
798 td->td_turnstile = NULL; in turnstile_wait()
870 td->td_turnstile = ts; in turnstile_signal()
[all …]
H A Dkern_thread.c425 td->td_turnstile = turnstile_alloc(); in thread_init()
445 turnstile_free(td->td_turnstile); in thread_fini()
/f-stack/freebsd/sys/
H A Dproc.h244 struct turnstile *td_turnstile; /* (k) Associated turnstile. */ member