mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Adjustments to tasks from PR review
This commit is contained in:
parent
a65f379860
commit
74f816ab40
20
tasks.c
20
tasks.c
|
@ -2757,21 +2757,6 @@ static BaseType_t prvCreateIdleTasks( void )
|
|||
return xReturn;
|
||||
}
|
||||
|
||||
void vTaskStartScheduler( void )
|
||||
{
|
||||
BaseType_t xReturn;
|
||||
|
||||
#if ( configUSE_TIMERS == 1 )
|
||||
{
|
||||
xReturn = xTimerCreateTimerTask();
|
||||
}
|
||||
#endif /* configUSE_TIMERS */
|
||||
|
||||
xReturn = prvCreateIdleTasks();
|
||||
|
||||
return xReturn;
|
||||
}
|
||||
|
||||
void vTaskStartScheduler( void )
|
||||
{
|
||||
BaseType_t xReturn;
|
||||
|
@ -4234,11 +4219,6 @@ void vTaskMissedYield( void )
|
|||
* The MinimalIdle task.
|
||||
* ----------------------------------------------------------
|
||||
*
|
||||
* The portTASK_FUNCTION() macro is used to allow port/compiler specific
|
||||
* language extensions. The equivalent prototype for this function is:
|
||||
*
|
||||
* void prvMinimalIdleTask( void *pvParameters );
|
||||
*
|
||||
* The minimal idle task is used for all the additional Cores in a SMP system.
|
||||
* There must be only 1 idle task and the rest are minimal idle tasks.
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue