Home
last modified time | relevance | path

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

/freebsd/sys/kern/
H A Dkern_thr.c517 if (td->td_pflags & TDP_WAKEUP) { in kern_thr_suspend()
518 td->td_pflags &= ~TDP_WAKEUP; in kern_thr_suspend()
561 td->td_pflags |= TDP_WAKEUP; in sys_thr_wake()
H A Dsubr_sleepqueue.c443 if ((td->td_pflags & TDP_WAKEUP) != 0) { in sleepq_check_ast_sc_locked()
444 td->td_pflags &= ~TDP_WAKEUP; in sleepq_check_ast_sc_locked()
/freebsd/sys/sys/
H A Dproc.h554 #define TDP_WAKEUP 0x00080000 /* Don't sleep in umtx cond_wait */ macro