summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2013-07-19 15:08:53 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-07-22 16:57:24 +0200
commitf17c7798288c530cda114db266dd6790c70f8b28 (patch)
treee60d2ce825ff6c1bebced34e0fdb6753648cb645 /cpukit/posix/src
parentscore: Avoid direct usage of _Thread_Executing (diff)
downloadrtems-f17c7798288c530cda114db266dd6790c70f8b28.tar.bz2
posix: Create timer implementation header
Move implementation specific parts of timer.h and timer.inl into new header file timerimpl.h. The timer.h contains now only the application visible API.
Diffstat (limited to 'cpukit/posix/src')
-rw-r--r--cpukit/posix/src/ptimer.c2
-rw-r--r--cpukit/posix/src/timercreate.c2
-rw-r--r--cpukit/posix/src/timerdelete.c2
-rw-r--r--cpukit/posix/src/timergetoverrun.c2
-rw-r--r--cpukit/posix/src/timergettime.c2
-rw-r--r--cpukit/posix/src/timerinserthelper.c2
-rw-r--r--cpukit/posix/src/timersettime.c2
-rw-r--r--cpukit/posix/src/timertsr.c2
8 files changed, 8 insertions, 8 deletions
diff --git a/cpukit/posix/src/ptimer.c b/cpukit/posix/src/ptimer.c
index 540fb71cef..5ce17d4e21 100644
--- a/cpukit/posix/src/ptimer.c
+++ b/cpukit/posix/src/ptimer.c
@@ -44,7 +44,7 @@
#include <stdio.h>
#include <signal.h>
-#include <rtems/posix/timer.h>
+#include <rtems/posix/timerimpl.h>
/*
* _POSIX_Timer_Manager_initialization
diff --git a/cpukit/posix/src/timercreate.c b/cpukit/posix/src/timercreate.c
index a8690b6699..8316e58398 100644
--- a/cpukit/posix/src/timercreate.c
+++ b/cpukit/posix/src/timercreate.c
@@ -29,7 +29,7 @@
#include <rtems/score/thread.h>
#include <rtems/posix/sigset.h>
#include <rtems/posix/time.h>
-#include <rtems/posix/timer.h>
+#include <rtems/posix/timerimpl.h>
int timer_create(
clockid_t clock_id,
diff --git a/cpukit/posix/src/timerdelete.c b/cpukit/posix/src/timerdelete.c
index e17d48b181..686dc78f1d 100644
--- a/cpukit/posix/src/timerdelete.c
+++ b/cpukit/posix/src/timerdelete.c
@@ -28,7 +28,7 @@
#include <rtems/seterr.h>
#include <rtems/score/thread.h>
#include <rtems/posix/time.h>
-#include <rtems/posix/timer.h>
+#include <rtems/posix/timerimpl.h>
int timer_delete(
diff --git a/cpukit/posix/src/timergetoverrun.c b/cpukit/posix/src/timergetoverrun.c
index 0708db4f7d..fda4280dd9 100644
--- a/cpukit/posix/src/timergetoverrun.c
+++ b/cpukit/posix/src/timergetoverrun.c
@@ -24,7 +24,7 @@
#include <rtems/system.h>
#include <rtems/seterr.h>
#include <rtems/score/thread.h>
-#include <rtems/posix/timer.h>
+#include <rtems/posix/timerimpl.h>
int timer_getoverrun(
timer_t timerid
diff --git a/cpukit/posix/src/timergettime.c b/cpukit/posix/src/timergettime.c
index a4b0f3ae58..b000ed4b47 100644
--- a/cpukit/posix/src/timergettime.c
+++ b/cpukit/posix/src/timergettime.c
@@ -28,7 +28,7 @@
#include <rtems/score/thread.h>
#include <rtems/score/tod.h>
#include <rtems/score/timespec.h>
-#include <rtems/posix/timer.h>
+#include <rtems/posix/timerimpl.h>
/*
* - When a timer is initialized, the value of the time in
diff --git a/cpukit/posix/src/timerinserthelper.c b/cpukit/posix/src/timerinserthelper.c
index eddc455f57..66b3e9b007 100644
--- a/cpukit/posix/src/timerinserthelper.c
+++ b/cpukit/posix/src/timerinserthelper.c
@@ -26,7 +26,7 @@
#include <rtems/seterr.h>
#include <rtems/score/isr.h>
#include <rtems/score/watchdog.h>
-#include <rtems/posix/timer.h>
+#include <rtems/posix/timerimpl.h>
#include <rtems/posix/ptimer.h>
bool _POSIX_Timer_Insert_helper(
diff --git a/cpukit/posix/src/timersettime.c b/cpukit/posix/src/timersettime.c
index 678266ae3c..ae29e3d582 100644
--- a/cpukit/posix/src/timersettime.c
+++ b/cpukit/posix/src/timersettime.c
@@ -29,7 +29,7 @@
#include <rtems/score/tod.h>
#include <rtems/posix/time.h>
#include <rtems/posix/ptimer.h>
-#include <rtems/posix/timer.h>
+#include <rtems/posix/timerimpl.h>
int timer_settime(
timer_t timerid,
diff --git a/cpukit/posix/src/timertsr.c b/cpukit/posix/src/timertsr.c
index ad17ae91c2..eb6ca9fd89 100644
--- a/cpukit/posix/src/timertsr.c
+++ b/cpukit/posix/src/timertsr.c
@@ -30,7 +30,7 @@
#include <rtems/score/tod.h>
#include <rtems/posix/time.h>
#include <rtems/posix/ptimer.h>
-#include <rtems/posix/timer.h>
+#include <rtems/posix/timerimpl.h>
/*
* This is the operation that is run when a timer expires