freertos: fix compilation warning in single core mode

When tickless idle is enabled
This commit is contained in:
Ivan Grokhotkov 2018-10-30 16:05:45 +08:00
parent 4f4bed5e65
commit ae08bdcc31

View file

@ -2153,6 +2153,8 @@ void vTaskSuspendAll( void )
#if ( configUSE_TICKLESS_IDLE != 0 )
#if ( portNUM_PROCESSORS > 1 )
static BaseType_t xHaveReadyTasks()
{
for (int i = tskIDLE_PRIORITY + 1; i < configMAX_PRIORITIES; ++i)
@ -2169,6 +2171,7 @@ void vTaskSuspendAll( void )
return pdFALSE;
}
#endif // portNUM_PROCESSORS > 1
static TickType_t prvGetExpectedIdleTime( void )
{