From 8e46738436b18d0f1a9424a95b678ab1596cb092 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Tue, 3 Jun 2014 10:29:30 +0200 Subject: score: Replace _Scheduler_Allocate/Free() Replace _Scheduler_Allocate() with _Scheduler_Node_initialize(). Remove the return status and thus the node initialization must be always successful. Rename _Scheduler_Free() to _Scheduler_Node_destroy(). --- cpukit/score/src/schedulersimplesmp.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'cpukit/score/src/schedulersimplesmp.c') diff --git a/cpukit/score/src/schedulersimplesmp.c b/cpukit/score/src/schedulersimplesmp.c index d5d3908f30..029da67b7a 100644 --- a/cpukit/score/src/schedulersimplesmp.c +++ b/cpukit/score/src/schedulersimplesmp.c @@ -42,7 +42,7 @@ void _Scheduler_simple_SMP_Initialize( const Scheduler_Control *scheduler ) _Chain_Initialize_empty( &self->Ready ); } -bool _Scheduler_simple_SMP_Allocate( +void _Scheduler_simple_SMP_Node_initialize( const Scheduler_Control *scheduler, Thread_Control *the_thread ) @@ -50,8 +50,6 @@ bool _Scheduler_simple_SMP_Allocate( Scheduler_SMP_Node *node = _Scheduler_SMP_Node_get( the_thread ); _Scheduler_SMP_Node_initialize( node ); - - return true; } static void _Scheduler_simple_SMP_Do_update( -- cgit v1.2.3