freertos-smp: Updated the FreeRTOS SMP kernel source to the latest commit

This commit updates the FreeRTOS SMP source to the latest upstream
source at commit 8128208bdee1f997f83cae631b861f36aeea9b1f
This commit is contained in:
Sudeep Mohanty
2022-11-02 15:00:47 +01:00
parent 3c18cc482c
commit 4bc6b9ed7e
4 changed files with 18 additions and 1 deletions

View File

@@ -4722,6 +4722,12 @@ static void prvCheckTasksWaitingTermination( void )
pxTaskStatus->pxStackBase = pxTCB->pxStack;
pxTaskStatus->xTaskNumber = pxTCB->uxTCBNumber;
#if ( ( configUSE_CORE_AFFINITY == 1 ) && ( configNUM_CORES > 1 ) )
{
pxTaskStatus->uxCoreAffinityMask = pxTCB->uxCoreAffinityMask;
}
#endif
#if ( configUSE_MUTEXES == 1 )
{
pxTaskStatus->uxBasePriority = pxTCB->uxBasePriority;