From 744c6d114e3681a2e8cfcd4475424a7d19774d52 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Wed, 11 Oct 2017 22:01:45 -0400 Subject: sched: Don't shutdown on a "timer in the past" if already shutdown A shutdown will not help if the mcu is already in a shutdown state. Signed-off-by: Kevin O'Connor --- src/generic/timer_irq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/generic/timer_irq.c') diff --git a/src/generic/timer_irq.c b/src/generic/timer_irq.c index 6527c949..0b4c3c8d 100644 --- a/src/generic/timer_irq.c +++ b/src/generic/timer_irq.c @@ -54,7 +54,7 @@ timer_dispatch_many(void) if (unlikely(timer_is_before(tru, now))) { // Check if there are too many repeat timers if (diff < (int32_t)(-timer_from_us(1000))) - shutdown("Rescheduled timer in the past"); + try_shutdown("Rescheduled timer in the past"); if (sched_tasks_busy()) { timer_repeat_until = now + TIMER_REPEAT_TICKS; return now + TIMER_DEFER_REPEAT_TICKS; -- cgit v1.2.3-70-g09d2