forked from espressif/esp-idf
Fix prev code to not crash horribly when scheduler is not running yet
This commit is contained in:
committed by
Ivan Grokhotkov
parent
08ec33c6a2
commit
128bb77c5a
@@ -3761,7 +3761,10 @@ scheduler will re-enable the interrupts instead. */
|
||||
void vTaskEnterCritical( portMUX_TYPE *mux )
|
||||
#endif
|
||||
{
|
||||
portENTER_CRITICAL_NESTED(uxOldInterruptState);
|
||||
if( xSchedulerRunning != pdFALSE )
|
||||
{
|
||||
portENTER_CRITICAL_NESTED(pxCurrentTCB[ xPortGetCoreID() ]->uxOldInterruptState);
|
||||
}
|
||||
#ifdef CONFIG_FREERTOS_PORTMUX_DEBUG
|
||||
vPortCPUAcquireMutex( mux, function, line );
|
||||
#else
|
||||
@@ -3814,7 +3817,7 @@ scheduler will re-enable the interrupts instead. */
|
||||
|
||||
if( pxCurrentTCB[ xPortGetCoreID() ]->uxCriticalNesting == 0U )
|
||||
{
|
||||
portEXIT_CRITICAL_NESTED(uxOldInterruptState);
|
||||
portEXIT_CRITICAL_NESTED(pxCurrentTCB[ xPortGetCoreID() ]->uxOldInterruptState);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Reference in New Issue
Block a user