summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/threadinitialize.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2013-07-24 13:12:38 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-07-26 11:55:44 +0200
commitc6e21ee18f71aa78ca6420bc835ab6b7e2dbcc65 (patch)
treedd620b9620437fdcbfd61d1097ecfafdd511ccb0 /cpukit/score/src/threadinitialize.c
parentscore: Create schedulerpriority impl header (diff)
downloadrtems-c6e21ee18f71aa78ca6420bc835ab6b7e2dbcc65.tar.bz2
score: Create scheduler implementation header
Move implementation specific parts of scheduler.h and scheduler.inl into new header file schedulerimpl.h. The scheduler.h contains now only the application visible API.
Diffstat (limited to 'cpukit/score/src/threadinitialize.c')
-rw-r--r--cpukit/score/src/threadinitialize.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/cpukit/score/src/threadinitialize.c b/cpukit/score/src/threadinitialize.c
index 5c778a8b25..2075293fd2 100644
--- a/cpukit/score/src/threadinitialize.c
+++ b/cpukit/score/src/threadinitialize.c
@@ -17,18 +17,12 @@
#include "config.h"
#endif
-#include <rtems/system.h>
+#include <rtems/score/thread.h>
#include <rtems/config.h>
-#include <rtems/score/apiext.h>
-#include <rtems/score/context.h>
-#include <rtems/score/interr.h>
-#include <rtems/score/isr.h>
#include <rtems/score/object.h>
#include <rtems/score/priority.h>
-#include <rtems/score/scheduler.h>
+#include <rtems/score/schedulerimpl.h>
#include <rtems/score/stackimpl.h>
-#include <rtems/score/states.h>
-#include <rtems/score/thread.h>
#include <rtems/score/threadq.h>
#include <rtems/score/userextimpl.h>
#include <rtems/score/watchdogimpl.h>