summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/scheduleredfenqueue.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/scheduleredfenqueue.c')
-rw-r--r--cpukit/score/src/scheduleredfenqueue.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/cpukit/score/src/scheduleredfenqueue.c b/cpukit/score/src/scheduleredfenqueue.c
deleted file mode 100644
index 8973d8b32c..0000000000
--- a/cpukit/score/src/scheduleredfenqueue.c
+++ /dev/null
@@ -1,34 +0,0 @@
-/**
- * @file
- *
- * @brief Scheduler EDF Enqueue
- * @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/scheduleredfimpl.h>
-
-void _Scheduler_EDF_Enqueue(
- const Scheduler_Control *scheduler,
- Thread_Control *the_thread
-)
-{
- Scheduler_EDF_Context *context =
- _Scheduler_EDF_Get_context( scheduler );
- Scheduler_EDF_Node *node = _Scheduler_EDF_Node_get( the_thread );
-
- _RBTree_Insert( &context->Ready, &node->Node );
- node->queue_state = SCHEDULER_EDF_QUEUE_STATE_YES;
-}