| 185 | |
| 186 | #if 0 |
| 187 | static uint32_t muldiv_ceil(uint32_t value, struct sched_clock *numer, struct sched_clock *denom) { |
| 188 | if (likely(numer->tick_unit == denom->tick_unit)) { |
| 189 | return value; |
| 190 | } else { |
| 191 | return (uint32_t)div_ceil((uint64_t)value * numer->tick_unit, denom); |
| 192 | } |
| 193 | } |
| 194 | #endif |
| 195 | |
| 196 | void sched_run_event(enum sched_item_id id) { |
nothing calls this directly
no test coverage detected