Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FreeRTOS/FreeRTOS-Kernel.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Julicher <jjulicher@mac.com>2021-05-13 03:01:00 +0300
committerJoseph Julicher <jjulicher@mac.com>2021-05-19 19:24:46 +0300
commit74f816ab4052fae9fbeebce463096df56bfc5e69 (patch)
tree8484ae940155c5f3e63ed597c2cab437af2f3a06
parenta65f379860b8812daeec563968a8d65871f0f9b4 (diff)
Adjustments to tasks from PR review
-rw-r--r--tasks.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/tasks.c b/tasks.c
index 643aeca8d..8dd539be4 100644
--- a/tasks.c
+++ b/tasks.c
@@ -2769,21 +2769,6 @@ void vTaskStartScheduler( void )
xReturn = prvCreateIdleTasks();
- return xReturn;
-}
-
-void vTaskStartScheduler( void )
-{
- BaseType_t xReturn;
-
- #if ( configUSE_TIMERS == 1 )
- {
- xReturn = xTimerCreateTimerTask();
- }
- #endif /* configUSE_TIMERS */
-
- xReturn = prvCreateIdleTasks();
-
if( xReturn == pdPASS )
{
/* freertos_tasks_c_additions_init() should only be called if the user
@@ -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.
*