Home
last modified time | relevance | path

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

/dragonfly/sys/platform/vkernel64/x86_64/
H A Dtrap.c223 if (p->p_flags & (P_SIGVTALRM | P_SIGPROF)) { in userret()
225 if (p->p_flags & P_SIGVTALRM) { in userret()
226 p->p_flags &= ~P_SIGVTALRM; in userret()
/dragonfly/sys/platform/pc64/x86_64/
H A Dtrap.c259 if (__predict_false(p->p_flags & (P_SIGVTALRM | P_SIGPROF))) { in userret()
261 if (p->p_flags & P_SIGVTALRM) { in userret()
262 p->p_flags &= ~P_SIGVTALRM; in userret()
/dragonfly/sys/sys/
H A Dproc.h378 #define P_SIGVTALRM 0x02000000 /* signal SIGVTALRM pending due to itimer */ macro
/dragonfly/sys/kern/
H A Dkern_time.c1007 p->p_flags &= ~P_SIGVTALRM; in sys_setitimer()
H A Dkern_clock.c859 p->p_flags |= P_SIGVTALRM; in hardclock()