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 80a390c commit 1aaa318Copy full SHA for 1aaa318
tasks.c
@@ -5118,7 +5118,7 @@ void vTaskMissedYield( void )
5118
5119
taskYIELD();
5120
5121
- while( INFINITE_LOOP() )
+ for( ; INFINITE_LOOP(); )
5122
{
5123
#if ( configUSE_PREEMPTION == 0 )
5124
@@ -5203,7 +5203,7 @@ static portTASK_FUNCTION( prvIdleTask, pvParameters )
5203
}
5204
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
5205
5206
5207
5208
/* See if any tasks have deleted themselves - if so then the idle task
5209
* is responsible for freeing the deleted task's TCB and stack. */
0 commit comments