Home
last modified time | relevance | path

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

/f-stack/freebsd/kern/
H A Dkern_racct.c940 child->p_prev_runtime = 0; in racct_proc_fork()
1008 KASSERT(runtime >= p->p_prev_runtime, ("runtime < p_prev_runtime")); in racct_proc_exit()
1010 if (runtime < p->p_prev_runtime) in racct_proc_exit()
1011 runtime = p->p_prev_runtime; in racct_proc_exit()
1278 KASSERT(runtime >= p->p_prev_runtime, in racctd()
1281 if (runtime < p->p_prev_runtime) in racctd()
1282 runtime = p->p_prev_runtime; in racctd()
1284 p->p_prev_runtime = runtime; in racctd()
/f-stack/freebsd/sys/
H A Dproc.h707 uint64_t p_prev_runtime; /* (c) Resource usage accounting. */ member