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/include/rtems/score/schedulersimplesmp.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpukit/score/include/rtems/score/schedulersimplesmp.h') diff --git a/cpukit/score/include/rtems/score/schedulersimplesmp.h b/cpukit/score/include/rtems/score/schedulersimplesmp.h index 6c4d421ed7..6ab1dd2894 100644 --- a/cpukit/score/include/rtems/score/schedulersimplesmp.h +++ b/cpukit/score/include/rtems/score/schedulersimplesmp.h @@ -65,8 +65,8 @@ typedef struct { _Scheduler_simple_SMP_Block, \ _Scheduler_simple_SMP_Unblock, \ _Scheduler_simple_SMP_Change_priority, \ - _Scheduler_simple_SMP_Allocate, \ - _Scheduler_default_Free, \ + _Scheduler_simple_SMP_Node_initialize, \ + _Scheduler_default_Node_destroy, \ _Scheduler_default_Update, \ _Scheduler_priority_Priority_compare, \ _Scheduler_default_Release_job, \ @@ -78,7 +78,7 @@ typedef struct { void _Scheduler_simple_SMP_Initialize( const Scheduler_Control *scheduler ); -bool _Scheduler_simple_SMP_Allocate( +void _Scheduler_simple_SMP_Node_initialize( const Scheduler_Control *scheduler, Thread_Control *the_thread ); -- cgit v1.2.3