summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src')
-rw-r--r--cpukit/score/src/schedulerdefaultschedule.c22
-rw-r--r--cpukit/score/src/schedulerprioritysmp.c9
-rw-r--r--cpukit/score/src/schedulersimplesmp.c9
3 files changed, 22 insertions, 18 deletions
diff --git a/cpukit/score/src/schedulerdefaultschedule.c b/cpukit/score/src/schedulerdefaultschedule.c
new file mode 100644
index 0000000000..ca8d01ea71
--- /dev/null
+++ b/cpukit/score/src/schedulerdefaultschedule.c
@@ -0,0 +1,22 @@
+/*
+ * Copyright (c) 2014 embedded brains GmbH
+ *
+ * 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/scheduler.h>
+
+void _Scheduler_default_Schedule(
+ const Scheduler_Control *scheduler,
+ Thread_Control *the_thread
+)
+{
+ (void) scheduler;
+ (void) the_thread;
+}
diff --git a/cpukit/score/src/schedulerprioritysmp.c b/cpukit/score/src/schedulerprioritysmp.c
index dbf7b0c38b..0c02b4433e 100644
--- a/cpukit/score/src/schedulerprioritysmp.c
+++ b/cpukit/score/src/schedulerprioritysmp.c
@@ -326,15 +326,6 @@ void _Scheduler_priority_SMP_Yield(
_ISR_Enable( level );
}
-void _Scheduler_priority_SMP_Schedule(
- const Scheduler_Control *scheduler,
- Thread_Control *thread
-)
-{
- (void) scheduler;
- (void) thread;
-}
-
void _Scheduler_priority_SMP_Start_idle(
const Scheduler_Control *scheduler,
Thread_Control *thread,
diff --git a/cpukit/score/src/schedulersimplesmp.c b/cpukit/score/src/schedulersimplesmp.c
index a971ee1b64..88f301a62c 100644
--- a/cpukit/score/src/schedulersimplesmp.c
+++ b/cpukit/score/src/schedulersimplesmp.c
@@ -262,15 +262,6 @@ void _Scheduler_simple_SMP_Yield(
_ISR_Enable( level );
}
-void _Scheduler_simple_SMP_Schedule(
- const Scheduler_Control *scheduler,
- Thread_Control *thread
-)
-{
- (void) scheduler;
- (void) thread;
-}
-
void _Scheduler_simple_SMP_Start_idle(
const Scheduler_Control *scheduler,
Thread_Control *thread,