Home
last modified time | relevance | path

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

/freebsd-12.1/sys/kern/
H A Dkern_racct.c928 child->p_prev_runtime = 0; in racct_proc_fork()
996 KASSERT(runtime >= p->p_prev_runtime, ("runtime < p_prev_runtime")); in racct_proc_exit()
998 if (runtime < p->p_prev_runtime) in racct_proc_exit()
999 runtime = p->p_prev_runtime; in racct_proc_exit()
1252 KASSERT(runtime >= p->p_prev_runtime, in racctd()
1255 if (runtime < p->p_prev_runtime) in racctd()
1256 runtime = p->p_prev_runtime; in racctd()
1258 p->p_prev_runtime = runtime; in racctd()
/freebsd-12.1/sys/sys/
H A Dproc.h680 uint64_t p_prev_runtime; /* (c) Resource usage accounting. */ member