We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f06046 commit 54c5a96Copy full SHA for 54c5a96
tasks.c
@@ -3868,7 +3868,7 @@ void vTaskSuspendAll( void )
3868
* uxSchedulerSuspended since that will prevent context switches. */
3869
ulState = portSET_INTERRUPT_MASK();
3870
3871
- const BaseType_t xCoreID = ( BaseType_t ) portGET_CORE_ID();
+ BaseType_t xCoreID = ( BaseType_t ) portGET_CORE_ID();
3872
3873
/* This must never be called from inside a critical section. */
3874
configASSERT( portGET_CRITICAL_NESTING_COUNT( xCoreID ) == 0 );
0 commit comments