| 164 | } |
| 165 | |
| 166 | void rt_ktime_hrtimer_process(void) |
| 167 | { |
| 168 | rt_base_t level = rt_spin_lock_irqsave(&_spinlock); |
| 169 | |
| 170 | _hrtimer_process_locked(); |
| 171 | _set_next_timeout_locked(); |
| 172 | |
| 173 | rt_spin_unlock_irqrestore(&_spinlock, level); |
| 174 | } |
| 175 | |
| 176 | void rt_ktime_hrtimer_init(rt_ktime_hrtimer_t timer, |
| 177 | const char *name, |
no test coverage detected