| 1042 | } |
| 1043 | |
| 1044 | int |
| 1045 | callout_schedule(struct callout *c, int to_ticks) |
| 1046 | { |
| 1047 | return callout_reset_on(c, to_ticks, c->c_func, c->c_arg, c->c_cpu); |
| 1048 | } |
| 1049 | |
| 1050 | int |
| 1051 | _callout_stop_safe(struct callout *c, int flags, callout_func_t *drain) |
no outgoing calls
no test coverage detected