Home
last modified time | relevance | path

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

/freebsd-11-stable/sys/kern/
HDsubr_trap.c119 (TDF_NEEDSIGCHK | TDF_ASTPENDING)) == in userret()
120 (TDF_NEEDSIGCHK | TDF_ASTPENDING), in userret()
239 td->td_flags &= ~(TDF_ASTPENDING | TDF_NEEDSIGCHK | TDF_NEEDSUSPCHK | in ast()
286 if (p->p_numthreads == 1 && (flags & TDF_NEEDSIGCHK) == 0) { in ast()
298 (TDF_NEEDSIGCHK | TDF_ASTPENDING)) == in ast()
299 (TDF_NEEDSIGCHK | TDF_ASTPENDING), in ast()
313 if (flags & TDF_NEEDSIGCHK || p->p_pendingcnt > 0 || in ast()
HDsubr_sleepqueue.c453 if ((td->td_flags & (TDF_NEEDSIGCHK | TDF_NEEDSUSPCHK)) != 0) { in sleepq_catch_signals()
474 if ((td->td_flags & TDF_NEEDSIGCHK) != 0) { in sleepq_catch_signals()
HDkern_sig.c616 td->td_flags |= TDF_NEEDSIGCHK | TDF_ASTPENDING; in signotify()
/freebsd-11-stable/sys/sys/
HDproc.h413 #define TDF_NEEDSIGCHK 0x00020000 /* Thread may need signal delivery. */ macro