summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-02-14 18:59:37 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-02-14 18:59:37 +0000
commitf972294dc70342dfdae2d9cd1843794cbd463eaa (patch)
tree4ed15871be8257fdfa217b99e5244a07001fa37c
parentremoved arguments from _Thread_Start_multitasking (diff)
downloadrtems-f972294dc70342dfdae2d9cd1843794cbd463eaa.tar.bz2
idle thread now created before system initialization thread.
Also system initialization thread only created in MP systems.
-rw-r--r--c/src/exec/sapi/src/exinit.c5
-rw-r--r--cpukit/sapi/src/exinit.c5
2 files changed, 2 insertions, 8 deletions
diff --git a/c/src/exec/sapi/src/exinit.c b/c/src/exec/sapi/src/exinit.c
index 303e235e0e..52f24ed7d0 100644
--- a/c/src/exec/sapi/src/exinit.c
+++ b/c/src/exec/sapi/src/exinit.c
@@ -250,10 +250,7 @@ void rtems_initialize_executive_late(
_System_state_Set( SYSTEM_STATE_BEGIN_MULTITASKING );
- _Thread_Start_multitasking(
- _Internal_threads_System_initialization_thread,
- _Internal_threads_Idle_thread
- );
+ _Thread_Start_multitasking();
/*
* Restore the interrupt level to what the BSP had. Technically,
diff --git a/cpukit/sapi/src/exinit.c b/cpukit/sapi/src/exinit.c
index 303e235e0e..52f24ed7d0 100644
--- a/cpukit/sapi/src/exinit.c
+++ b/cpukit/sapi/src/exinit.c
@@ -250,10 +250,7 @@ void rtems_initialize_executive_late(
_System_state_Set( SYSTEM_STATE_BEGIN_MULTITASKING );
- _Thread_Start_multitasking(
- _Internal_threads_System_initialization_thread,
- _Internal_threads_Idle_thread
- );
+ _Thread_Start_multitasking();
/*
* Restore the interrupt level to what the BSP had. Technically,