Add additional comment only.

This commit is contained in:
Richard Barry 2013-07-01 09:05:15 +00:00
parent 625b1a7159
commit 877ce218a4

View file

@ -1606,6 +1606,9 @@ implementations require configUSE_TICKLESS_IDLE to be set to a value other than
void vTaskStepTick( portTickType xTicksToJump ) void vTaskStepTick( portTickType xTicksToJump )
{ {
/* Correct the tick count value after a period during which the tick
was suppressed. Note this does *not* call the tick hook function for
each stepped tick. */
configASSERT( ( xTickCount + xTicksToJump ) <= xNextTaskUnblockTime ); configASSERT( ( xTickCount + xTicksToJump ) <= xNextTaskUnblockTime );
xTickCount += xTicksToJump; xTickCount += xTicksToJump;
} }