summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/schedulersimplesmpunblock.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/schedulersimplesmpunblock.c')
-rw-r--r--cpukit/score/src/schedulersimplesmpunblock.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/cpukit/score/src/schedulersimplesmpunblock.c b/cpukit/score/src/schedulersimplesmpunblock.c
deleted file mode 100644
index ef61d483e8..0000000000
--- a/cpukit/score/src/schedulersimplesmpunblock.c
+++ /dev/null
@@ -1,34 +0,0 @@
-/**
- * @file
- *
- * @brief Scheduler Simple SMP Unblock Method
- * @ingroup ScoreScheduler
- */
-
-/*
- * COPYRIGHT (c) 2011.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
- */
-
-#if HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include <rtems/system.h>
-#include <rtems/score/schedulersimplesmp.h>
-
-void _Scheduler_simple_smp_Unblock(
- Thread_Control *the_thread
-)
-{
- _Scheduler_simple_Ready_queue_enqueue(the_thread);
-
- /*
- * Evaluate all CPUs and pick heirs
- */
- _Scheduler_simple_smp_Schedule();
-}