Home
last modified time | relevance | path

Searched refs:TDP_SIGFASTBLOCK (Results 1 – 5 of 5) sorted by relevance

/freebsd/sys/kern/
H A Dkern_sig.c285 (td->td_pflags & TDP_SIGFASTBLOCK) == 0) { in ast_sig()
2167 td->td_pflags &= ~TDP_SIGFASTBLOCK; in trapsignal()
3370 if ((td->td_pflags & TDP_SIGFASTBLOCK) != 0) { in issignal()
3944 if ((td->td_pflags & TDP_SIGFASTBLOCK) == 0) in sigfastblock_fetch_sig()
3980 if ((td->td_pflags & TDP_SIGFASTBLOCK) != 0) { in sys_sigfastblock()
3988 td->td_pflags |= TDP_SIGFASTBLOCK; in sys_sigfastblock()
3993 if ((td->td_pflags & TDP_SIGFASTBLOCK) == 0) { in sys_sigfastblock()
4044 if ((td->td_pflags & TDP_SIGFASTBLOCK) == 0) { in sys_sigfastblock()
4071 if ((td->td_pflags & TDP_SIGFASTBLOCK) == 0) in sigfastblock_clear()
4076 td->td_pflags &= ~(TDP_SIGFASTBLOCK | TDP_SIGFASTPENDING); in sigfastblock_clear()
H A Dsubr_trap.c104 (td->td_pflags & TDP_SIGFASTBLOCK) == 0 && in userret()
H A Dkern_fork.c659 td2->td_pflags |= td->td_pflags & (TDP_ALTSTACK | TDP_SIGFASTBLOCK); in do_fork()
H A Dkern_proc.c3246 if ((td1->td_pflags & TDP_SIGFASTBLOCK) != 0) in sysctl_kern_proc_sigfastblk()
/freebsd/sys/sys/
H A Dproc.h546 #define TDP_SIGFASTBLOCK 0x00000100 /* Fast sigblock active */ macro