Searched refs:on_tick (Results 1 – 1 of 1) sorted by relevance
/freebsd/sys/sys/ |
H A D | callout.h | 104 #define callout_reset(c, on_tick, fn, arg) \ argument 105 callout_reset_on((c), (on_tick), (fn), (arg), -1) 106 #define callout_reset_curcpu(c, on_tick, fn, arg) \ argument 107 callout_reset_on((c), (on_tick), (fn), (arg), PCPU_GET(cpuid)) 117 #define callout_schedule_curcpu(c, on_tick) \ argument 118 callout_schedule_on((c), (on_tick), PCPU_GET(cpuid))
|