Home
last modified time | relevance | path

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

/f-stack/freebsd/kern/
H A Dsubr_trap.c119 (td->td_pflags & TDP_SIGFASTBLOCK) == 0) { in userret()
297 (td->td_pflags & TDP_SIGFASTBLOCK) == 0) { in ast()
H A Dkern_sig.c2050 td->td_pflags &= ~TDP_SIGFASTBLOCK; in trapsignal()
2878 if ((td->td_pflags & TDP_SIGFASTBLOCK) != 0) { in issignal()
4070 if ((td->td_pflags & TDP_SIGFASTBLOCK) == 0) in sigfastblock_fetch_sig()
4108 if ((td->td_pflags & TDP_SIGFASTBLOCK) != 0) { in sys_sigfastblock()
4116 td->td_pflags |= TDP_SIGFASTBLOCK; in sys_sigfastblock()
4121 if ((td->td_pflags & TDP_SIGFASTBLOCK) == 0) { in sys_sigfastblock()
4172 if ((td->td_pflags & TDP_SIGFASTBLOCK) == 0) { in sys_sigfastblock()
4199 if ((td->td_pflags & TDP_SIGFASTBLOCK) == 0) in sigfastblock_clear()
4204 td->td_pflags &= ~(TDP_SIGFASTBLOCK | TDP_SIGFASTPENDING); in sigfastblock_clear()
H A Dkern_fork.c586 TDP_SIGFASTBLOCK)) | TDP_FORKING; in do_fork()
H A Dkern_proc.c3091 if ((td1->td_pflags & TDP_SIGFASTBLOCK) != 0) in sysctl_kern_proc_sigfastblk()
/f-stack/freebsd/sys/
H A Dproc.h499 #define TDP_SIGFASTBLOCK 0x00000100 /* Fast sigblock active */ macro