diff options
Diffstat (limited to 'src/linux/timer.c')
-rw-r--r-- | src/linux/timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/linux/timer.c b/src/linux/timer.c index 21be0131..8eda62a5 100644 --- a/src/linux/timer.c +++ b/src/linux/timer.c @@ -152,7 +152,7 @@ timer_dispatch(void) // Check if there are too many repeat timers if (diff < (int32_t)(-timer_from_us(100000))) try_shutdown("Rescheduled timer in the past"); - if (sched_tasks_busy()) + if (sched_check_set_tasks_busy()) return; repeat_count = TIMER_IDLE_REPEAT_COUNT; } |