summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/threadmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/threadmp.c')
-rw-r--r--cpukit/score/src/threadmp.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/cpukit/score/src/threadmp.c b/cpukit/score/src/threadmp.c
index f5253560a6..cbb6c1c6b1 100644
--- a/cpukit/score/src/threadmp.c
+++ b/cpukit/score/src/threadmp.c
@@ -20,6 +20,7 @@
#include <rtems/score/threadimpl.h>
#include <rtems/score/isrlock.h>
+#include <rtems/score/schedulerimpl.h>
#include <rtems/score/wkspace.h>
#include <string.h>
@@ -74,6 +75,16 @@ void _Thread_MP_Handler_initialization (
_Thread_Timer_initialize( &proxy->Timer, _Per_CPU_Get_by_index( 0 ) );
_RBTree_Initialize_node( &proxy->Active );
+#if defined(RTEMS_SMP)
+ proxy->Scheduler.own_node = &proxy->Scheduler_node;
+#endif
+ proxy->Scheduler.node = &proxy->Scheduler_node;
+ _Scheduler_Node_do_initialize(
+ &proxy->Scheduler_node,
+ (Thread_Control *) proxy,
+ 0
+ );
+
proxy->Wait.spare_heads = &proxy->Thread_queue_heads[ 0 ];
_Thread_queue_Heads_initialize( proxy->Wait.spare_heads );
}