Searched refs:xTickCount (Results 1 – 5 of 5) sorted by relevance
367 PRIVILEGED_DATA static volatile TickType_t xTickCount = ( TickType_t ) configINITIAL_TICK_COUNT; variable1232 const TickType_t xConstTickCount = xTickCount; in xTaskDelayUntil()2052 xTickCount = ( TickType_t ) configINITIAL_TICK_COUNT; in vTaskStartScheduler()2179 xReturn = xNextTaskUnblockTime - xTickCount; in prvGetExpectedIdleTime()2307 xTicks = xTickCount; in xTaskGetTickCount()2338 xReturn = xTickCount; in xTaskGetTickCountFromISR()2647 configASSERT( ( xTickCount + xTicksToJump ) <= xNextTaskUnblockTime ); in vTaskStepTick()2649 if( ( xTickCount + xTicksToJump ) == xNextTaskUnblockTime ) in vTaskStepTick()2670 xTickCount += xTicksToJump; in vTaskStepTick()2790 traceTASK_INCREMENT_TICK( xTickCount ); in xTaskIncrementTick()[all …]
252 ensures xTickCount reaches xNextTaskUnblockTime inside xTaskIncrementTick()254 wakes up one tick late and a rare case assertion failure when xTickCount\
143 #define portALT_GET_RUN_TIME_COUNTER_VALUE( dest ) ( dest = xTickCount )
144 #define portALT_GET_RUN_TIME_COUNTER_VALUE( dest ) ( dest = xTickCount )
663 #define traceTASK_INCREMENT_TICK( xTickCount ) argument