Home
last modified time | relevance | path

Searched refs:p_throttled (Results 1 – 3 of 3) sorted by relevance

/f-stack/freebsd/kern/
H A Dkern_racct.c941 child->p_throttled = 0; in racct_proc_fork()
1109 while (p->p_throttled != 0) { in racct_proc_throttled()
1111 p->p_throttled < 0 ? 0 : p->p_throttled); in racct_proc_throttled()
1112 if (p->p_throttled > 0) in racct_proc_throttled()
1113 p->p_throttled = 0; in racct_proc_throttled()
1141 if (p->p_throttled < 0 || (timeout > 0 && p->p_throttled > timeout)) in racct_proc_throttle()
1144 p->p_throttled = timeout; in racct_proc_throttle()
1187 if (p->p_throttled != 0) { in racct_proc_wakeup()
1188 p->p_throttled = 0; in racct_proc_wakeup()
1325 } else if (p->p_throttled == -1) { in racctd()
H A Dsubr_trap.c359 if (__predict_false(racct_enable && p->p_throttled != 0)) in ast()
/f-stack/freebsd/sys/
H A Dproc.h709 int p_throttled; /* (c) Flag for racct pcpu throttling */ member