Searched refs:on_tick (Results 1 – 2 of 2) sorted by relevance
| /f-stack/tools/compat/include/sys/ |
| H A D | callout.h | 112 #define callout_reset(c, on_tick, fn, arg) \ argument 113 callout_reset_on((c), (on_tick), (fn), (arg), -1) 114 #define callout_reset_curcpu(c, on_tick, fn, arg) \ argument 115 callout_reset_on((c), (on_tick), (fn), (arg), PCPU_GET(cpuid)) 125 #define callout_schedule_curcpu(c, on_tick) \ argument 126 callout_schedule_on((c), (on_tick), PCPU_GET(cpuid))
|
| /f-stack/freebsd/sys/ |
| H A D | callout.h | 114 #define callout_reset(c, on_tick, fn, arg) \ argument 115 callout_reset_on((c), (on_tick), (fn), (arg), -1) 116 #define callout_reset_curcpu(c, on_tick, fn, arg) \ argument 117 callout_reset_on((c), (on_tick), (fn), (arg), PCPU_GET(cpuid)) 127 #define callout_schedule_curcpu(c, on_tick) \ argument 128 callout_schedule_on((c), (on_tick), PCPU_GET(cpuid))
|