mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-03 04:34:31 +02:00
freertos: Fix regression when xCoreID included in task status TCB
Regression when adding FreeRTOS 10 support. As reported at https://github.com/espressif/esp-idf/issues/1453#issuecomment-709663537
This commit is contained in:
@@ -4134,7 +4134,7 @@ static void prvCheckTasksWaitingTermination( void )
|
|||||||
pxTaskStatus->xTaskNumber = pxTCB->uxTCBNumber;
|
pxTaskStatus->xTaskNumber = pxTCB->uxTCBNumber;
|
||||||
|
|
||||||
#if ( configTASKLIST_INCLUDE_COREID == 1 )
|
#if ( configTASKLIST_INCLUDE_COREID == 1 )
|
||||||
pxTaskStatus.xCoreID = pxTCB->xCoreID;
|
pxTaskStatus->xCoreID = pxTCB->xCoreID;
|
||||||
#endif /* configTASKLIST_INCLUDE_COREID */
|
#endif /* configTASKLIST_INCLUDE_COREID */
|
||||||
|
|
||||||
#if ( configUSE_MUTEXES == 1 )
|
#if ( configUSE_MUTEXES == 1 )
|
||||||
|
Reference in New Issue
Block a user