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-14 01:42:57 +0300
committerJoseph Julicher <jjulicher@mac.com>2021-05-19 19:40:43 +0300
commite71e7021108e345701f6fa6198d90a1f3c754ffe (patch)
tree0bf19b5fbd5d1010563979ce2a4e39ab27e575b7
parentbc42e04850586a8622923a48351b23647d644f4c (diff)
Static allocation and lightweight idle tasks (#323)
* added multiple idle tasks * Added multiple IDLE tasks to non-static allocation * Adjustments to tasks from PR review
-rw-r--r--tasks.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/tasks.c b/tasks.c
index a40e51d94..313c463e9 100644
--- a/tasks.c
+++ b/tasks.c
@@ -2754,7 +2754,6 @@ static BaseType_t prvCreateIdleTasks( void )
}
#endif /* configSUPPORT_STATIC_ALLOCATION */
}
-
return xReturn;
}