summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/schedulersimple.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2013-07-24 11:37:28 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-07-26 11:55:43 +0200
commitbd5606abcb2cf1e4c778a5063f158990be9bee62 (patch)
tree7eb44d87647956ed3dc50bbfe40baff483c16efb /cpukit/score/include/rtems/score/schedulersimple.h
parentlibtests/malloc04: Fixes for RTEMS_DEBUG (diff)
downloadrtems-bd5606abcb2cf1e4c778a5063f158990be9bee62.tar.bz2
score: Create schedulersimple impl header
Move implementation specific parts of schedulersimple.h and schedulersimple.inl into new header file schedulersimpleimpl.h. The schedulersimple.h contains now only the application visible API.
Diffstat (limited to 'cpukit/score/include/rtems/score/schedulersimple.h')
-rw-r--r--cpukit/score/include/rtems/score/schedulersimple.h20
1 files changed, 8 insertions, 12 deletions
diff --git a/cpukit/score/include/rtems/score/schedulersimple.h b/cpukit/score/include/rtems/score/schedulersimple.h
index 17514cc4c2..ba67c14729 100644
--- a/cpukit/score/include/rtems/score/schedulersimple.h
+++ b/cpukit/score/include/rtems/score/schedulersimple.h
@@ -18,6 +18,13 @@
#ifndef _RTEMS_SCORE_SCHEDULERSIMPLE_H
#define _RTEMS_SCORE_SCHEDULERSIMPLE_H
+#include <rtems/score/scheduler.h>
+#include <rtems/score/schedulerpriority.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
/**
* @defgroup ScoreSchedulerSimple Simple Priority Scheduler
*
@@ -25,13 +32,6 @@
*/
/**@{*/
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#include <rtems/score/scheduler.h>
-#include <rtems/score/schedulerpriority.h>
-
/**
* Entry points for Scheduler Simple
*/
@@ -215,15 +215,11 @@ void _Scheduler_simple_Ready_queue_enqueue_first(
Thread_Control *the_thread
);
-#ifndef __RTEMS_APPLICATION__
-#include <rtems/score/schedulersimple.inl>
-#endif
+/**@}*/
#ifdef __cplusplus
}
#endif
-/**@}*/
-
#endif
/* end of include file */