mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-12-07 13:45:00 -05:00
Add semiicolons that were accidentally removed
This commit is contained in:
parent
4b63ff8f28
commit
49bb912605
1 changed files with 2 additions and 2 deletions
4
tasks.c
4
tasks.c
|
|
@ -3357,7 +3357,7 @@ static void prvInitialiseNewTask( TaskFunction_t pxTaskCode,
|
||||||
/* The ready list can be accessed even if the scheduler is
|
/* The ready list can be accessed even if the scheduler is
|
||||||
* suspended because this is inside a critical section. */
|
* suspended because this is inside a critical section. */
|
||||||
( void ) uxListRemove( &( pxTCB->xStateListItem ) );
|
( void ) uxListRemove( &( pxTCB->xStateListItem ) );
|
||||||
prvAddTaskToReadyList( pxTCB )
|
prvAddTaskToReadyList( pxTCB );
|
||||||
|
|
||||||
/* This yield may not cause the task just resumed to run,
|
/* This yield may not cause the task just resumed to run,
|
||||||
* but will leave the lists in the correct state for the
|
* but will leave the lists in the correct state for the
|
||||||
|
|
@ -3943,7 +3943,7 @@ BaseType_t xTaskResumeAll( void )
|
||||||
listREMOVE_ITEM( &( pxTCB->xEventListItem ) );
|
listREMOVE_ITEM( &( pxTCB->xEventListItem ) );
|
||||||
portMEMORY_BARRIER();
|
portMEMORY_BARRIER();
|
||||||
listREMOVE_ITEM( &( pxTCB->xStateListItem ) );
|
listREMOVE_ITEM( &( pxTCB->xStateListItem ) );
|
||||||
prvAddTaskToReadyList( pxTCB )
|
prvAddTaskToReadyList( pxTCB );
|
||||||
|
|
||||||
#if ( configNUMBER_OF_CORES == 1 )
|
#if ( configNUMBER_OF_CORES == 1 )
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue