* The tick count has overflowed. Switch the timer lists after ensuring the\r
* current timer list does not still reference some timers.\r
*/\r
-static void prvSwitchTimerLists( portTickType xLastTime, portTickType xTimeNow ) PRIVILEGED_FUNCTION;\r
+static void prvSwitchTimerLists( portTickType xLastTime ) PRIVILEGED_FUNCTION;\r
\r
/*\r
* Obtain the current tick count, setting *pxTimerListsWereSwitched to pdTRUE\r
\r
if( xTimeNow < xLastTime )\r
{\r
- prvSwitchTimerLists( xLastTime, xTimeNow );\r
+ prvSwitchTimerLists( xLastTime );\r
*pxTimerListsWereSwitched = pdTRUE;\r
}\r
else\r
}\r
/*-----------------------------------------------------------*/\r
\r
-static void prvSwitchTimerLists( portTickType xLastTime, portTickType xTimeNow )\r
+static void prvSwitchTimerLists( portTickType xLastTime )\r
{\r
portTickType xNextExpireTime, xReloadTime;\r
xList *pxTemp;\r