Home
last modified time | relevance | path

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

/freebsd-head/sys/kern/
HDsubr_trap.c108 (td->td_pflags & TDP_SIGFASTBLOCK) == 0 && in userret()
HDkern_sig.c309 (td->td_pflags & TDP_SIGFASTBLOCK) == 0) { in ast_sig()
2175 td->td_pflags &= ~TDP_SIGFASTBLOCK; in trapsignal()
3366 if ((td->td_pflags & TDP_SIGFASTBLOCK) != 0) { in issignal()
4464 if ((td->td_pflags & TDP_SIGFASTBLOCK) == 0) in sigfastblock_fetch_sig()
4500 if ((td->td_pflags & TDP_SIGFASTBLOCK) != 0) { in sys_sigfastblock()
4508 td->td_pflags |= TDP_SIGFASTBLOCK; in sys_sigfastblock()
4513 if ((td->td_pflags & TDP_SIGFASTBLOCK) == 0) { in sys_sigfastblock()
4564 if ((td->td_pflags & TDP_SIGFASTBLOCK) == 0) { in sys_sigfastblock()
4591 if ((td->td_pflags & TDP_SIGFASTBLOCK) == 0) in sigfastblock_clear()
4596 td->td_pflags &= ~(TDP_SIGFASTBLOCK | TDP_SIGFASTPENDING); in sigfastblock_clear()
HDkern_fork.c611 td2->td_pflags |= (td->td_pflags & (TDP_ALTSTACK | TDP_SIGFASTBLOCK)); in do_fork()
HDkern_proc.c3235 if ((td1->td_pflags & TDP_SIGFASTBLOCK) != 0) in sysctl_kern_proc_sigfastblk()
/freebsd-head/sys/sys/
HDproc.h543 #define TDP_SIGFASTBLOCK 0x00000100 /* Fast sigblock active */ macro