summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/schedulersimplesmpunblock.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-05-17 19:48:44 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-05-17 19:48:44 +0000
commitba7bc099a86deef7c5b0f00887a315262e8f7974 (patch)
tree83a4a6c0db1840dda210a0c9e92732c38acff76b /cpukit/score/src/schedulersimplesmpunblock.c
parent2011-05-17 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-ba7bc099a86deef7c5b0f00887a315262e8f7974.tar.bz2
2011-05-17 Joel Sherrill <joel.sherrill@oarcorp.com>
PR 1789/cpukit * sapi/include/confdefs.h, score/Makefile.am, score/preinstall.am: Add Simple SMP Priority Scheduler. * score/include/rtems/score/schedulersimplesmp.h, score/src/schedulersimplesmpblock.c, score/src/schedulersimplesmpschedule.c, score/src/schedulersimplesmpunblock.c: New files.
Diffstat (limited to '')
-rw-r--r--cpukit/score/src/schedulersimplesmpunblock.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/cpukit/score/src/schedulersimplesmpunblock.c b/cpukit/score/src/schedulersimplesmpunblock.c
new file mode 100644
index 0000000000..58332d4f9e
--- /dev/null
+++ b/cpukit/score/src/schedulersimplesmpunblock.c
@@ -0,0 +1,31 @@
+/*
+ * Scheduler Simple SMP Handler / Unblock
+ *
+ * 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.
+ *
+ * $Id$
+ */
+
+#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();
+}