@@ -3895,17 +3895,17 @@ void vTaskSuspendAll( void )
3895
3895
static TickType_t prvGetExpectedIdleTime ( void )
3896
3896
{
3897
3897
TickType_t xReturn ;
3898
- UBaseType_t uxHigherPriorityReadyTasks = pdFALSE ;
3898
+ BaseType_t xHigherPriorityReadyTasks = pdFALSE ;
3899
3899
3900
- /* uxHigherPriorityReadyTasks takes care of the case where
3900
+ /* xHigherPriorityReadyTasks takes care of the case where
3901
3901
* configUSE_PREEMPTION is 0, so there may be tasks above the idle priority
3902
3902
* task that are in the Ready state, even though the idle task is
3903
3903
* running. */
3904
3904
#if ( configUSE_PORT_OPTIMISED_TASK_SELECTION == 0 )
3905
3905
{
3906
3906
if ( uxTopReadyPriority > tskIDLE_PRIORITY )
3907
3907
{
3908
- uxHigherPriorityReadyTasks = pdTRUE ;
3908
+ xHigherPriorityReadyTasks = pdTRUE ;
3909
3909
}
3910
3910
}
3911
3911
#else
@@ -3919,7 +3919,7 @@ void vTaskSuspendAll( void )
3919
3919
* care of the case where the co-operative scheduler is in use. */
3920
3920
if ( uxTopReadyPriority > uxLeastSignificantBit )
3921
3921
{
3922
- uxHigherPriorityReadyTasks = pdTRUE ;
3922
+ xHigherPriorityReadyTasks = pdTRUE ;
3923
3923
}
3924
3924
}
3925
3925
#endif /* if ( configUSE_PORT_OPTIMISED_TASK_SELECTION == 0 ) */
@@ -3935,7 +3935,7 @@ void vTaskSuspendAll( void )
3935
3935
* processed. */
3936
3936
xReturn = 0 ;
3937
3937
}
3938
- else if ( uxHigherPriorityReadyTasks != pdFALSE )
3938
+ else if ( xHigherPriorityReadyTasks != pdFALSE )
3939
3939
{
3940
3940
/* There are tasks in the Ready state that have a priority above the
3941
3941
* idle priority. This path can only be reached if
0 commit comments