mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Fix typo in xHigherPriorityReadyTasks
This commit is contained in:
parent
7a418ceffe
commit
f41b6a626b
2
tasks.c
2
tasks.c
|
@ -3947,7 +3947,7 @@ void vTaskSuspendAll( void )
|
|||
static TickType_t prvGetExpectedIdleTime( void )
|
||||
{
|
||||
TickType_t xReturn;
|
||||
BaseType_t uxHigherPriorityReadyTasks = pdFALSE;
|
||||
BaseType_t xHigherPriorityReadyTasks = pdFALSE;
|
||||
TCB_t * const pxConstCurrentTCB = prvGetCurrentTaskTCB();
|
||||
|
||||
/* xHigherPriorityReadyTasks takes care of the case where
|
||||
|
|
Loading…
Reference in a new issue