mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-09-10 08:07:46 -04:00
Fix formatting
This commit is contained in:
parent
1ec813b158
commit
cd2096abc1
2 changed files with 25 additions and 25 deletions
4
tasks.c
4
tasks.c
|
@ -255,7 +255,7 @@
|
|||
pxTemp = pxDelayedTaskList; \
|
||||
pxDelayedTaskList = pxOverflowDelayedTaskList; \
|
||||
pxOverflowDelayedTaskList = pxTemp; \
|
||||
xNumOfOverflows = ( BaseType_t )( xNumOfOverflows + 1 ); \
|
||||
xNumOfOverflows = ( BaseType_t ) ( xNumOfOverflows + 1 ); \
|
||||
prvResetNextTaskUnblockTime(); \
|
||||
} while( 0 )
|
||||
|
||||
|
@ -3969,7 +3969,7 @@ BaseType_t xTaskResumeAll( void )
|
|||
* previous call to vTaskSuspendAll(). */
|
||||
configASSERT( uxSchedulerSuspended != 0U );
|
||||
|
||||
uxSchedulerSuspended = ( UBaseType_t )( uxSchedulerSuspended - 1U );
|
||||
uxSchedulerSuspended = ( UBaseType_t ) ( uxSchedulerSuspended - 1U );
|
||||
portRELEASE_TASK_LOCK();
|
||||
|
||||
if( uxSchedulerSuspended == ( UBaseType_t ) 0U )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue