summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/scheduleredfenqueuefirst.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/scheduleredfenqueuefirst.c')
-rw-r--r--cpukit/score/src/scheduleredfenqueuefirst.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/cpukit/score/src/scheduleredfenqueuefirst.c b/cpukit/score/src/scheduleredfenqueuefirst.c
deleted file mode 100644
index aafc9b4a21..0000000000
--- a/cpukit/score/src/scheduleredfenqueuefirst.c
+++ /dev/null
@@ -1,32 +0,0 @@
-/**
- * @file
- *
- * @brief Enqueues a thread to the ready queue
- *
- * @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/system.h>
-#include <rtems/config.h>
-#include <rtems/score/scheduleredf.h>
-
-void _Scheduler_EDF_Enqueue_first(
- const Scheduler_Control *scheduler,
- Thread_Control *the_thread
-)
-{
- _Scheduler_EDF_Enqueue( scheduler, the_thread );
-}