Explorar el Código

[kernel][timer] remove _timerhead_idx which is unused

Meco Man hace 1 año
padre
commit
e0ce62e4ca
Se han modificado 1 ficheros con 0 adiciones y 16 borrados
  1. 0 16
      src/timer.c

+ 0 - 16
src/timer.c

@@ -109,22 +109,6 @@ rt_inline struct rt_spinlock* _timerlock_idx(struct rt_timer *timer)
     }
 }
 
-rt_inline rt_list_t* _timerhead_idx(struct rt_timer *timer)
-{
-#ifdef RT_USING_TIMER_SOFT
-    if (timer->parent.flag & RT_TIMER_FLAG_SOFT_TIMER)
-    {
-        /* insert timer to soft timer list */
-        return _soft_timer_list;
-    }
-    else
-#endif /* RT_USING_TIMER_SOFT */
-    {
-        /* insert timer to system timer list */
-        return _timer_list;
-    }
-}
-
 /**
  * @brief [internal] The init funtion of timer
  *