summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/schedulersimpleextract.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/schedulersimpleextract.c')
-rw-r--r--cpukit/score/src/schedulersimpleextract.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/cpukit/score/src/schedulersimpleextract.c b/cpukit/score/src/schedulersimpleextract.c
deleted file mode 100644
index 6b89c99881..0000000000
--- a/cpukit/score/src/schedulersimpleextract.c
+++ /dev/null
@@ -1,32 +0,0 @@
-/**
- * @file
- *
- * @brief Removes a Thread from the Simple Queue
- *
- * @ingroup ScoreScheduler
- */
-
-/*
- * 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/schedulersimpleimpl.h>
-
-void _Scheduler_simple_Extract(
- const Scheduler_Control *scheduler,
- Thread_Control *the_thread
-)
-{
- (void) scheduler;
-
- _Chain_Extract_unprotected( &the_thread->Object.Node );
-}