summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/schedulersimplesmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/schedulersimplesmp.c')
-rw-r--r--cpukit/score/src/schedulersimplesmp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/src/schedulersimplesmp.c b/cpukit/score/src/schedulersimplesmp.c
index da2b77a28e..7361678e53 100644
--- a/cpukit/score/src/schedulersimplesmp.c
+++ b/cpukit/score/src/schedulersimplesmp.c
@@ -47,7 +47,7 @@ void _Scheduler_simple_SMP_Node_initialize(
Thread_Control *the_thread
)
{
- Scheduler_SMP_Node *node = _Scheduler_SMP_Node_get( the_thread );
+ Scheduler_SMP_Node *node = _Scheduler_SMP_Thread_get_node( the_thread );
_Scheduler_SMP_Node_initialize( node, the_thread );
}
@@ -72,7 +72,7 @@ void _Scheduler_simple_SMP_Update_priority(
)
{
Scheduler_Context *context = _Scheduler_Get_context( scheduler );
- Scheduler_Node *node = _Scheduler_Node_get( thread );
+ Scheduler_Node *node = _Scheduler_Thread_get_node( thread );
_Scheduler_simple_SMP_Do_update( context, node, new_priority );
}