summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/schedulercbsallocate.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2014-06-03 10:29:30 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-06-04 08:37:06 +0200
commit8e46738436b18d0f1a9424a95b678ab1596cb092 (patch)
tree252be226da9107952a87628fd4e5265df603c167 /cpukit/score/src/schedulercbsallocate.c
parentsptests/spsem03: New test (diff)
downloadrtems-8e46738436b18d0f1a9424a95b678ab1596cb092.tar.bz2
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().
Diffstat (limited to 'cpukit/score/src/schedulercbsallocate.c')
-rw-r--r--cpukit/score/src/schedulercbsallocate.c37
1 files changed, 0 insertions, 37 deletions
diff --git a/cpukit/score/src/schedulercbsallocate.c b/cpukit/score/src/schedulercbsallocate.c
deleted file mode 100644
index 6a29088eb6..0000000000
--- a/cpukit/score/src/schedulercbsallocate.c
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * @file
- *
- * @brief Scheduler CBS 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 <rtems/score/schedulercbsimpl.h>
-
-bool _Scheduler_CBS_Allocate(
- const Scheduler_Control *scheduler,
- Thread_Control *the_thread
-)
-{
- Scheduler_CBS_Node *node = _Scheduler_CBS_Node_get( the_thread );
-
- (void) scheduler;
-
- node->Base.thread = the_thread;
- node->Base.queue_state = SCHEDULER_EDF_QUEUE_STATE_NEVER_HAS_BEEN;
- node->cbs_server = NULL;
-
- return true;
-}