@@ -526,7 +526,6 @@ static void _timer_check(rt_list_t *timer_list, struct rt_spinlock *lock)
526
526
t -> timeout_func (t -> parameter );
527
527
528
528
RT_OBJECT_HOOK_CALL (rt_timer_exit_hook , (t ));
529
- LOG_D ("current tick: %d" , current_tick );
530
529
531
530
level = rt_spin_lock_irqsave (lock );
532
531
@@ -750,8 +749,6 @@ void rt_timer_check(void)
750
749
{
751
750
RT_ASSERT (rt_interrupt_get_nest () > 0 );
752
751
753
- LOG_D ("timer check enter" );
754
-
755
752
#ifdef RT_USING_SMP
756
753
/* Running on core 0 only */
757
754
if (rt_cpu_get_id () != 0 )
@@ -760,8 +757,6 @@ void rt_timer_check(void)
760
757
}
761
758
#endif
762
759
_timer_check (_timer_list , & _htimer_lock );
763
-
764
- LOG_D ("timer check leave" );
765
760
}
766
761
767
762
/**
@@ -823,12 +818,7 @@ static void _timer_thread_entry(void *parameter)
823
818
}
824
819
}
825
820
826
- /* check software timer */
827
- LOG_D ("software timer check enter" );
828
-
829
- _timer_check (_soft_timer_list , & _stimer_lock );
830
-
831
- LOG_D ("software timer check leave" );
821
+ _timer_check (_soft_timer_list , & _stimer_lock ); /* check software timer */
832
822
}
833
823
}
834
824
#endif /* RT_USING_TIMER_SOFT */
0 commit comments