mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-12-07 13:45:00 -05:00
Fix unit test error about mixed declarations and code
This commit is contained in:
parent
2f9da89dc4
commit
bf37bdbfd3
1 changed files with 1 additions and 1 deletions
2
tasks.c
2
tasks.c
|
|
@ -3967,8 +3967,8 @@ BaseType_t xTaskResumeAll( void )
|
||||||
taskENTER_CRITICAL();
|
taskENTER_CRITICAL();
|
||||||
{
|
{
|
||||||
BaseType_t xCoreID;
|
BaseType_t xCoreID;
|
||||||
xCoreID = ( BaseType_t ) portGET_CORE_ID();
|
|
||||||
UBaseType_t uxSchedulerSuspendedVal;
|
UBaseType_t uxSchedulerSuspendedVal;
|
||||||
|
xCoreID = ( BaseType_t ) portGET_CORE_ID();
|
||||||
|
|
||||||
/* If uxSchedulerSuspended is zero then this function does not match a
|
/* If uxSchedulerSuspended is zero then this function does not match a
|
||||||
* previous call to vTaskSuspendAll(). */
|
* previous call to vTaskSuspendAll(). */
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue