summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/schedulerdefaultstartidle.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/schedulerdefaultstartidle.c')
-rw-r--r--cpukit/score/src/schedulerdefaultstartidle.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/cpukit/score/src/schedulerdefaultstartidle.c b/cpukit/score/src/schedulerdefaultstartidle.c
new file mode 100644
index 0000000000..043fe68b52
--- /dev/null
+++ b/cpukit/score/src/schedulerdefaultstartidle.c
@@ -0,0 +1,22 @@
+/*
+ * Copyright (c) 2013 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.com/license/LICENSE.
+ */
+
+#if HAVE_CONFIG_H
+ #include "config.h"
+#endif
+
+#include <rtems/score/scheduler.h>
+
+void _Scheduler_default_Start_idle(
+ Thread_Control *thread,
+ Per_CPU_Control *processor
+)
+{
+ (void) processor;
+ _Scheduler_Unblock( thread );
+}