mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-23 06:51:58 -04:00
Add additional comment only.
This commit is contained in:
parent
625b1a7159
commit
877ce218a4
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue