mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-30 23:18:37 -04:00
Prepare for V9.0.0 release.
+ Set flash wait states on MSP432 demos. + Remove use of obsolete IO library in PIC32 demos. + Remove obsolete item left on stack of first task to run in the Cortex-M0 ports. + Correct IA32 GCC vPortExitCritical() implementation when configMAX_API_CALL_INTERRUPT_PRIORITY == portMAX_PRIORITY.
This commit is contained in:
parent
e10647f9c0
commit
0063b29cdf
34 changed files with 2764 additions and 2463 deletions
|
@ -504,16 +504,16 @@ void vPortExitCritical( void )
|
|||
#else
|
||||
{
|
||||
portAPIC_TASK_PRIORITY = 0;
|
||||
|
||||
/* If a yield was pended from within the critical section then
|
||||
perform the yield now. */
|
||||
if( ulPortYieldPending != pdFALSE )
|
||||
{
|
||||
ulPortYieldPending = pdFALSE;
|
||||
__asm volatile( portYIELD_INTERRUPT );
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
/* If a yield was pended from within the critical section then
|
||||
perform the yield now. */
|
||||
if( ulPortYieldPending != pdFALSE )
|
||||
{
|
||||
ulPortYieldPending = pdFALSE;
|
||||
__asm volatile( portYIELD_INTERRUPT );
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue