mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Correct spelling of xSuspendedTaskList in eTaskConfirmSleepModeStatus().
This commit is contained in:
parent
dcc90bb6d9
commit
c519ba094d
|
@ -2202,7 +2202,7 @@ static portTASK_FUNCTION( prvIdleTask, pvParameters )
|
||||||
suspended list (which might mean they have an infinite block
|
suspended list (which might mean they have an infinite block
|
||||||
time rather than actually being suspended) then it is safe to
|
time rather than actually being suspended) then it is safe to
|
||||||
turn all clocks off and just wait for external initerrupts. */
|
turn all clocks off and just wait for external initerrupts. */
|
||||||
if( listCURRENT_LIST_LENGTH( &xSuspendedTasksList ) == ( uxCurrentNumberOfTasks - uxNonApplicationTasks ) )
|
if( listCURRENT_LIST_LENGTH( &xSuspendedTaskList ) == ( uxCurrentNumberOfTasks - uxNonApplicationTasks ) )
|
||||||
{
|
{
|
||||||
eReturn = eNoTasksWaitingTimeout;
|
eReturn = eNoTasksWaitingTimeout;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue