Home
last modified time | relevance | path

Searched refs:p_prev_runtime (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/sys/kern/
H A Dkern_racct.c933 child->p_prev_runtime = 0; in racct_proc_fork()
1001 KASSERT(runtime >= p->p_prev_runtime, ("runtime < p_prev_runtime")); in racct_proc_exit()
1003 if (runtime < p->p_prev_runtime) in racct_proc_exit()
1004 runtime = p->p_prev_runtime; in racct_proc_exit()
1276 KASSERT(runtime >= p->p_prev_runtime, in racctd()
1279 if (runtime < p->p_prev_runtime) in racctd()
1280 runtime = p->p_prev_runtime; in racctd()
1282 p->p_prev_runtime = runtime; in racctd()
/freebsd-14.2/sys/sys/
H A Dproc.h765 uint64_t p_prev_runtime; /* (c) Resource usage accounting. */ member