]> git.droids-corp.org - aversive.git/blobdiff - modules/base/scheduler/scheduler_interrupt.c
merge
[aversive.git] / modules / base / scheduler / scheduler_interrupt.c
index 15b94090a9a36653ad852758851005961f5fda25..7045776e09e9f9ceb61de152f614faa6af739172 100644 (file)
@@ -45,13 +45,13 @@ void scheduler_enable_restore(uint8_t old_prio)
        priority_running = old_prio;
 }
 
-/** 
+/**
  *  this function is called from a timer interruption. If an event has
  *  to be scheduled, it will execute the fonction (IRQ are allowed
  *  during the execution of the function). This interruption can be
  *  interrupted by itself too, in this case only events with a higher
  *  priority can be scheduled.
- * 
+ *
  *  We assume that this function is called from a SIGNAL(), with
  *  global interrupt flag disabled --> that's why we can use cli() and
  *  sei() instead of IRQ_LOCK(flags).