Home
last modified time | relevance | path

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

/freebsd/sys/kern/
H A Dkern_timeout.c521 tmp_max = c->c_time + c->c_precision; in callout_process()
602 c->c_precision = precision; in callout_cc_add()
605 c, (int)(c->c_precision >> 32), in callout_cc_add()
606 (u_int)(c->c_precision & 0xffffffff)); in callout_cc_add()
615 if (SBT_MAX - c->c_time < c->c_precision) in callout_cc_add()
616 c->c_precision = SBT_MAX - c->c_time; in callout_cc_add()
617 sbt = c->c_time + c->c_precision; in callout_cc_add()
681 cc->cc_lastscan + c->c_precision / 2, in softclock_call_cc()
682 qmax(c->c_precision / 2, 1), c_func, c_arg, in softclock_call_cc()
1415 spr += tmp->c_precision / SBT_1US; in sysctl_kern_callout_stat()
[all …]
/freebsd/sys/sys/
H A D_callout.h58 __sbintime_t c_precision; /* delta allowed wrt opt */ member