Updates to timers.c related to module testing.

This commit is contained in:
Richard Barry 2011-02-20 11:05:54 +00:00
parent efc3ba9d73
commit 5c98d0eb7c

View file

@ -268,7 +268,7 @@ xTIMER *pxTimer;
the time this task thinks it is now, even if a command to
switch lists due to a tick count overflow is already waiting in
the timer queue. */
prvInsertTimerInActiveList( pxTimer, ( xNextExpireTime + pxTimer->xTimerPeriodInTicks ), xTimeNow );
prvInsertTimerInActiveList( pxTimer, ( xNextExpireTime + pxTimer->xTimerPeriodInTicks ), xTimeNow, xNextExpireTime );
}
/* Call the timer callback. */
@ -575,4 +575,3 @@ xTIMER *pxTimer = ( xTIMER * ) xTimer;
}
/*-----------------------------------------------------------*/