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.c302 (td->td_pflags & TDP_SIGFASTBLOCK) == 0) { in ast_sig()
2168 td->td_pflags &= ~TDP_SIGFASTBLOCK; in trapsignal()
3330 if ((td->td_pflags & TDP_SIGFASTBLOCK) != 0) { in issignal()
4427 if ((td->td_pflags & TDP_SIGFASTBLOCK) == 0) in sigfastblock_fetch_sig()
4463 if ((td->td_pflags & TDP_SIGFASTBLOCK) != 0) { in sys_sigfastblock()
4471 td->td_pflags |= TDP_SIGFASTBLOCK; in sys_sigfastblock()
4476 if ((td->td_pflags & TDP_SIGFASTBLOCK) == 0) { in sys_sigfastblock()
4527 if ((td->td_pflags & TDP_SIGFASTBLOCK) == 0) { in sys_sigfastblock()
4554 if ((td->td_pflags & TDP_SIGFASTBLOCK) == 0) in sigfastblock_clear()
4559 td->td_pflags &= ~(TDP_SIGFASTBLOCK | TDP_SIGFASTPENDING); in sigfastblock_clear()
H A Dsubr_trap.c108 (td->td_pflags & TDP_SIGFASTBLOCK) == 0 && in userret()
H A Dkern_fork.c611 td2->td_pflags |= (td->td_pflags & (TDP_ALTSTACK | TDP_SIGFASTBLOCK)); in do_fork()
H A Dkern_proc.c3234 if ((td1->td_pflags & TDP_SIGFASTBLOCK) != 0) in sysctl_kern_proc_sigfastblk()
/freebsd/sys/sys/
H A Dproc.h543 #define TDP_SIGFASTBLOCK 0x00000100 /* Fast sigblock active */ macro