mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Change to xTaskResumeFromISR() function only. This function is untested.
This commit is contained in:
parent
d481cff89b
commit
17617c5451
|
@ -971,11 +971,16 @@ static unsigned portBASE_TYPE uxTaskNumber = 0; /*lint !e956 Static is deliberat
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
/* We cannot access the delayed or ready lists, so will hold this
|
/* We cannot access the delayed or ready lists, so will hold this
|
||||||
task pending until the scheduler is resumed. */
|
task pending until the scheduler is resumed, at which point a
|
||||||
|
yield will be preformed if necessary. */
|
||||||
xYieldRequired = pdFALSE;
|
xYieldRequired = pdFALSE;
|
||||||
vListInsertEnd( ( xList * ) &( xPendingReadyList ), &( pxTaskToResume->xEventListItem ) );
|
vListInsertEnd( ( xList * ) &( xPendingReadyList ), &( pxTaskToResume->xEventListItem ) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
xYieldRequired = pdFALSE;
|
||||||
|
}
|
||||||
|
|
||||||
return xYieldRequired;
|
return xYieldRequired;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue