MCPcopy Create free account
hub / github.com/FreeRTOS/FreeRTOS-Kernel / vTaskStepTick

Function vTaskStepTick

tasks.c:3362–3370  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3360#if ( configUSE_TICKLESS_IDLE != 0 )
3361
3362 void vTaskStepTick( const TickType_t xTicksToJump )
3363 {
3364 /* Correct the tick count value after a period during which the tick
3365 * was suppressed. Note this does *not* call the tick hook function for
3366 * each stepped tick. */
3367 configASSERT( ( xTickCount + xTicksToJump ) <= xNextTaskUnblockTime );
3368 xTickCount += xTicksToJump;
3369 traceINCREASE_TICK_COUNT( xTicksToJump );
3370 }
3371
3372#endif /* configUSE_TICKLESS_IDLE */
3373/*----------------------------------------------------------*/

Callers 15

port.cFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected