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/scheduleredfnodeinit.c | 34 +++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 cpukit/score/src/scheduleredfnodeinit.c (limited to 'cpukit/score/src/scheduleredfnodeinit.c') diff --git a/cpukit/score/src/scheduleredfnodeinit.c b/cpukit/score/src/scheduleredfnodeinit.c new file mode 100644 index 0000000000..031feb08f2 --- /dev/null +++ b/cpukit/score/src/scheduleredfnodeinit.c @@ -0,0 +1,34 @@ +/** + * @file + * + * @brief Scheduler EDF Allocate + * @ingroup ScoreScheduler + */ + +/* + * Copyright (C) 2011 Petr Benes. + * Copyright (C) 2011 On-Line Applications Research Corporation (OAR). + * + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.org/license/LICENSE. + */ + +#if HAVE_CONFIG_H +#include "config.h" +#endif + +#include + +void _Scheduler_EDF_Node_initialize( + const Scheduler_Control *scheduler, + Thread_Control *the_thread +) +{ + Scheduler_EDF_Node *node = _Scheduler_EDF_Node_get( the_thread ); + + (void) scheduler; + + node->thread = the_thread; + node->queue_state = SCHEDULER_EDF_QUEUE_STATE_NEVER_HAS_BEEN; +} -- cgit v1.2.3