Home
last modified time | relevance | path

Searched refs:P_SIGPROF (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()
229 if (p->p_flags & P_SIGPROF) { in userret()
230 p->p_flags &= ~P_SIGPROF; in userret()
/dragonfly/sys/platform/pc64/x86_64/
H A Dtrap.c259 if (__predict_false(p->p_flags & (P_SIGVTALRM | P_SIGPROF))) { in userret()
265 if (p->p_flags & P_SIGPROF) { in userret()
266 p->p_flags &= ~P_SIGPROF; in userret()
/dragonfly/sys/sys/
H A Dproc.h379 #define P_SIGPROF 0x04000000 /* signal SIGPROF pending due to itimer */ macro
/dragonfly/sys/kern/
H A Dkern_time.c1010 p->p_flags &= ~P_SIGPROF; in sys_setitimer()
H A Dkern_clock.c864 p->p_flags |= P_SIGPROF; in hardclock()