Home
last modified time | relevance | path

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

/netbsd-src/sys/kern/
H A Dsched_4bsd.c188 * The main parameter used by this algorithm is 'l_estcpu'. It is an estimate
191 * l_estcpu is:
195 * If the lwp is sleeping for more than a second, we don't touch l_estcpu: it
199 * Note that hardclock updates l_estcpu and l_cpticks independently.
203 * Here we describe how l_estcpu is decreased.
206 * 90% of l_estcpu usage in (5 * loadavg) seconds
208 * We wish to decay away 90% of l_estcpu in (5 * loadavg) seconds. That is, we
211 * l_estcpu *= decay;
213 * l_estcpu *= 0.1;
297 * For all load averages >= 1 and max l_estcpu o in decay_cpu_batch()
[all...]
H A Dkern_proc.c2874 ki->p_estcpu += l->l_estcpu; in fill_kproc2()
/netbsd-src/sys/sys/
H A Dlwp.h123 fixpt_t l_estcpu; /* l: cpu time for SCHED_4BSD */ member