mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'feature/update_freertos_kernel_source' into 'master'
freertos-smp: update FreeRTOS SMP kernel Closes IDF-5256 See merge request espressif/esp-idf!18624
This commit is contained in:
commit
22ff8c7f78
@ -709,17 +709,13 @@ static void prvYieldCore( BaseType_t xCoreID )
|
|||||||
{
|
{
|
||||||
xYieldPendings[ xCoreID ] = pdTRUE;
|
xYieldPendings[ xCoreID ] = pdTRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef ESP_PLATFORM
|
|
||||||
// TODO: IDF-5256
|
|
||||||
#if ( configNUM_CORES > 1 )
|
#if ( configNUM_CORES > 1 )
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
portYIELD_CORE( xCoreID );
|
portYIELD_CORE( xCoreID );
|
||||||
pxCurrentTCBs[ xCoreID ]->xTaskRunState = taskTASK_YIELDING;
|
pxCurrentTCBs[ xCoreID ]->xTaskRunState = taskTASK_YIELDING;
|
||||||
}
|
}
|
||||||
#endif /* ( configNUM_CORES > 1 ) */
|
#endif
|
||||||
#endif /* ESP_PLATFORM */
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user