Home
last modified time | relevance | path

Searched refs:TDF_NEEDSIGCHK (Results 1 – 4 of 4) sorted by relevance

/f-stack/freebsd/kern/
H A Dsubr_trap.c121 (TDF_NEEDSIGCHK | TDF_ASTPENDING)) != in userret()
122 (TDF_NEEDSIGCHK | TDF_ASTPENDING)) { in userret()
230 td->td_flags &= ~(TDF_ASTPENDING | TDF_NEEDSIGCHK | TDF_NEEDSUSPCHK | in ast()
286 if (p->p_numthreads == 1 && (flags & TDF_NEEDSIGCHK) == 0) { in ast()
299 (TDF_NEEDSIGCHK | TDF_ASTPENDING)) != in ast()
300 (TDF_NEEDSIGCHK | TDF_ASTPENDING)) { in ast()
317 if (flags & TDF_NEEDSIGCHK || p->p_pendingcnt > 0 || in ast()
H A Dkern_sig.c623 td->td_flags |= TDF_NEEDSIGCHK | TDF_ASTPENDING; in signotify()
3178 if ((td->td_flags & TDF_NEEDSIGCHK) == 0) in sig_ast_needsigchk()
3224 if ((td->td_flags & (TDF_NEEDSIGCHK | TDF_NEEDSUSPCHK)) == 0) in sig_intr()
4093 td->td_flags |= TDF_ASTPENDING | TDF_NEEDSIGCHK; in sigfastblock_resched()
H A Dsubr_sleepqueue.c455 if ((td->td_flags & (TDF_NEEDSIGCHK | TDF_NEEDSUSPCHK)) == 0) in sleepq_check_ast_sc_locked()
/f-stack/freebsd/sys/
H A Dproc.h454 #define TDF_NEEDSIGCHK 0x00020000 /* Thread may need signal delivery. */ macro