Timer handling code size improvement in tickless mode.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9961 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
39a0718d2c
commit
27c8d2c34e
|
@ -354,14 +354,19 @@ void chSysTimerHandlerI(void) {
|
|||
chDbgAssert(nil.nexttime == port_timer_get_alarm(), "time mismatch");
|
||||
|
||||
do {
|
||||
systime_t timeout = tp->timeout;
|
||||
|
||||
/* Is the thread in a wait state with timeout?.*/
|
||||
if (tp->timeout > (systime_t)0) {
|
||||
if (timeout > (systime_t)0) {
|
||||
|
||||
chDbgAssert(!NIL_THD_IS_READY(tp), "is ready");
|
||||
chDbgAssert(tp->timeout >= (nil.nexttime - nil.lasttime), "skipped one");
|
||||
chDbgAssert(timeout >= (nil.nexttime - nil.lasttime), "skipped one");
|
||||
|
||||
tp->timeout -= nil.nexttime - nil.lasttime;
|
||||
if (tp->timeout == (systime_t)0) {
|
||||
/* The volatile field is updated once, here.*/
|
||||
timeout -= nil.nexttime - nil.lasttime;
|
||||
tp->timeout = timeout;
|
||||
|
||||
if (timeout == (systime_t)0) {
|
||||
#if CH_CFG_USE_SEMAPHORES == TRUE
|
||||
/* Timeout on semaphores requires a special handling because the
|
||||
semaphore counter must be incremented.*/
|
||||
|
@ -379,17 +384,19 @@ void chSysTimerHandlerI(void) {
|
|||
(void) chSchReadyI(tp, MSG_TIMEOUT);
|
||||
}
|
||||
else {
|
||||
if (tp->timeout <= (systime_t)(next - (systime_t)1)) {
|
||||
next = tp->timeout;
|
||||
if (timeout <= (systime_t)(next - (systime_t)1)) {
|
||||
next = timeout;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* Lock released in order to give a preemption chance on those
|
||||
architectures supporting IRQ preemption.*/
|
||||
chSysUnlockFromISR();
|
||||
tp++;
|
||||
chSysLockFromISR();
|
||||
} while (tp < &nil.threads[CH_CFG_NUM_THREADS]);
|
||||
|
||||
nil.lasttime = nil.nexttime;
|
||||
if (next > (systime_t)0) {
|
||||
nil.nexttime += next;
|
||||
|
|
Loading…
Reference in New Issue