* @brief Remove the timer * * @param timer the point of the timer */
| 189 | * @param timer the point of the timer |
| 190 | */ |
| 191 | rt_inline void _timer_remove(rt_timer_t timer) |
| 192 | { |
| 193 | int i; |
| 194 | |
| 195 | for (i = 0; i < RT_TIMER_SKIP_LIST_LEVEL; i++) |
| 196 | { |
| 197 | rt_list_remove(&timer->row[i]); |
| 198 | } |
| 199 | } |
| 200 | |
| 201 | #if (DBG_LVL == DBG_LOG) |
| 202 | /** |
no test coverage detected