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/schedulercbs.h | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) (limited to 'cpukit/score/include/rtems/score/schedulercbs.h') diff --git a/cpukit/score/include/rtems/score/schedulercbs.h b/cpukit/score/include/rtems/score/schedulercbs.h index 46db8e5609..23e528da66 100644 --- a/cpukit/score/include/rtems/score/schedulercbs.h +++ b/cpukit/score/include/rtems/score/schedulercbs.h @@ -53,8 +53,8 @@ extern "C" { _Scheduler_EDF_Block, /* block entry point */ \ _Scheduler_CBS_Unblock, /* unblock entry point */ \ _Scheduler_EDF_Change_priority, /* change priority entry point */ \ - _Scheduler_CBS_Allocate, /* allocate entry point */ \ - _Scheduler_default_Free, /* free entry point */ \ + _Scheduler_CBS_Node_initialize, /* node initialize entry point */ \ + _Scheduler_default_Node_destroy, /* node destroy entry point */ \ _Scheduler_EDF_Update, /* update entry point */ \ _Scheduler_EDF_Priority_compare, /* compares two priorities */ \ _Scheduler_CBS_Release_job, /* new period of task */ \ @@ -335,14 +335,9 @@ void _Scheduler_CBS_Budget_callout( ); /** - * @brief Allocates CBS specific information of @a the_thread. - * - * This routine allocates CBS specific information of @a the_thread. - * - * @param[in] the_thread is the thread the scheduler is allocating - * management memory for. + * @brief Initializes a CBS specific scheduler node of @a the_thread. */ -bool _Scheduler_CBS_Allocate( +void _Scheduler_CBS_Node_initialize( const Scheduler_Control *scheduler, Thread_Control *the_thread ); -- cgit v1.2.3