summaryrefslogtreecommitdiff
path: root/nuttx/sched/os_start.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-27 19:17:56 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-27 19:17:56 +0000
commit7a71b8268d87e44762604a6e3e4390f99ed37eca (patch)
tree5ca1c52a94dad3a4051fa21fe15a58f02a7b727d /nuttx/sched/os_start.c
parent2f2cd79e084223f644af5bb88ff19fd4f739f8b7 (diff)
downloadnuttx-7a71b8268d87e44762604a6e3e4390f99ed37eca.tar.gz
nuttx-7a71b8268d87e44762604a6e3e4390f99ed37eca.tar.bz2
nuttx-7a71b8268d87e44762604a6e3e4390f99ed37eca.zip
Add configs/stm32f4discovery/usbnsh
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5572 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/sched/os_start.c')
-rw-r--r--nuttx/sched/os_start.c23
1 files changed, 15 insertions, 8 deletions
diff --git a/nuttx/sched/os_start.c b/nuttx/sched/os_start.c
index 5e6eaa858..c60edc495 100644
--- a/nuttx/sched/os_start.c
+++ b/nuttx/sched/os_start.c
@@ -327,6 +327,12 @@ void os_start(void)
}
#endif
+ /* Allocate the IDLE group and suppress child status. */
+
+#ifdef HAVE_TASK_GROUP
+ (void)group_allocate(&g_idletcb);
+#endif
+
/* Initialize the interrupt handling subsystem (if included) */
#ifdef CONFIG_HAVE_WEAKFUNCTIONS
@@ -439,20 +445,21 @@ void os_start(void)
lib_initialize();
}
- /* Create the IDLE group and suppress child status */
-
-#ifdef HAVE_TASK_GROUP
- (void)group_allocate(&g_idletcb);
- (void)group_initialize(&g_idletcb);
- g_idletcb.group->tg_flags = GROUP_FLAG_NOCLDWAIT;
-#endif
-
/* Create stdout, stderr, stdin on the IDLE task. These will be
* inherited by all of the threads created by the IDLE task.
*/
(void)group_setupidlefiles(&g_idletcb);
+ /* Complete initialization of the IDLE group. Suppress retention
+ * of child status in the IDLE group.
+ */
+
+#ifdef HAVE_TASK_GROUP
+ (void)group_initialize(&g_idletcb);
+ g_idletcb.group->tg_flags = GROUP_FLAG_NOCLDWAIT;
+#endif
+
/* Create initial tasks and bring-up the system */
(void)os_bringup();