diff options
Diffstat (limited to 'src/chschd.c')
-rw-r--r-- | src/chschd.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/chschd.c b/src/chschd.c index c4b5df5a9..e091bb0a0 100644 --- a/src/chschd.c +++ b/src/chschd.c @@ -166,22 +166,4 @@ BOOL chSchRescRequiredI(void) { return TRUE;
}
-/**
- * Preemption routine, this function must be called into an interrupt
- * handler invoked by a system timer.
- * The frequency of the timer determines the system tick granularity and,
- * together with the \p CH_TIME_QUANTUM macro, the round robin interval.
- */
-void chSchTimerHandlerI(void) {
-
- rlist.r_preempt--;
-#ifdef CH_USE_SYSTEMTIME
- rlist.r_stime++;
-#endif
-
-#ifdef CH_USE_VIRTUAL_TIMERS
- chVTDoTickI();
-#endif
-}
-
/** @} */
|