summaryrefslogtreecommitdiffstats
path: root/cpukit/score
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2013-07-31 13:42:07 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-08-01 16:45:45 +0200
commitf031df0e637e3194494e34e97b94fb02a3933526 (patch)
treec4f63796d79a9e045f9c524c2a4e8092c2ed7abb /cpukit/score
parentscore: ISR lock API changes (diff)
downloadrtems-f031df0e637e3194494e34e97b94fb02a3933526.tar.bz2
score: Rename tod.h to todimpl.h
Diffstat (limited to 'cpukit/score')
-rw-r--r--cpukit/score/Makefile.am2
-rw-r--r--cpukit/score/include/rtems/score/threadimpl.h2
-rw-r--r--cpukit/score/include/rtems/score/todimpl.h (renamed from cpukit/score/include/rtems/score/tod.h)4
-rw-r--r--cpukit/score/preinstall.am6
-rw-r--r--cpukit/score/src/coretod.c2
-rw-r--r--cpukit/score/src/coretodget.c2
-rw-r--r--cpukit/score/src/coretodgetuptimetimespec.c2
-rw-r--r--cpukit/score/src/coretodset.c2
-rw-r--r--cpukit/score/src/coretodtickle.c2
-rw-r--r--cpukit/score/src/coretodtickspersec.c2
-rw-r--r--cpukit/score/src/threaddispatch.c2
-rw-r--r--cpukit/score/src/timespecaddto.c2
-rw-r--r--cpukit/score/src/timespecdivide.c2
-rw-r--r--cpukit/score/src/timespecdividebyinteger.c2
-rw-r--r--cpukit/score/src/timespecfromticks.c2
-rw-r--r--cpukit/score/src/timespecisvalid.c2
-rw-r--r--cpukit/score/src/timespecsubtract.c2
-rw-r--r--cpukit/score/src/timespectoticks.c2
18 files changed, 21 insertions, 21 deletions
diff --git a/cpukit/score/Makefile.am b/cpukit/score/Makefile.am
index eb7376dd79..015b23020e 100644
--- a/cpukit/score/Makefile.am
+++ b/cpukit/score/Makefile.am
@@ -70,7 +70,7 @@ include_rtems_score_HEADERS += include/rtems/score/threadsync.h
include_rtems_score_HEADERS += include/rtems/score/timespec.h
include_rtems_score_HEADERS += include/rtems/score/timestamp.h
include_rtems_score_HEADERS += include/rtems/score/timestamp64.h
-include_rtems_score_HEADERS += include/rtems/score/tod.h
+include_rtems_score_HEADERS += include/rtems/score/todimpl.h
include_rtems_score_HEADERS += include/rtems/score/userext.h
include_rtems_score_HEADERS += include/rtems/score/userextimpl.h
include_rtems_score_HEADERS += include/rtems/score/watchdog.h
diff --git a/cpukit/score/include/rtems/score/threadimpl.h b/cpukit/score/include/rtems/score/threadimpl.h
index e818bc8c50..fcd3f07bb4 100644
--- a/cpukit/score/include/rtems/score/threadimpl.h
+++ b/cpukit/score/include/rtems/score/threadimpl.h
@@ -23,7 +23,7 @@
#include <rtems/score/isr.h>
#include <rtems/score/objectimpl.h>
#include <rtems/score/statesimpl.h>
-#include <rtems/score/tod.h>
+#include <rtems/score/todimpl.h>
#ifdef __cplusplus
extern "C" {
diff --git a/cpukit/score/include/rtems/score/tod.h b/cpukit/score/include/rtems/score/todimpl.h
index 0cbbe2f46a..f16390ec12 100644
--- a/cpukit/score/include/rtems/score/tod.h
+++ b/cpukit/score/include/rtems/score/todimpl.h
@@ -15,8 +15,8 @@
* http://www.rtems.com/license/LICENSE.
*/
-#ifndef _RTEMS_SCORE_TOD_H
-#define _RTEMS_SCORE_TOD_H
+#ifndef _RTEMS_SCORE_TODIMPL_H
+#define _RTEMS_SCORE_TODIMPL_H
#include <rtems/score/basedefs.h>
#include <rtems/score/timestamp.h>
diff --git a/cpukit/score/preinstall.am b/cpukit/score/preinstall.am
index aff76c900b..6d0cb81348 100644
--- a/cpukit/score/preinstall.am
+++ b/cpukit/score/preinstall.am
@@ -263,9 +263,9 @@ $(PROJECT_INCLUDE)/rtems/score/timestamp64.h: include/rtems/score/timestamp64.h
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/timestamp64.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/timestamp64.h
-$(PROJECT_INCLUDE)/rtems/score/tod.h: include/rtems/score/tod.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
- $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/tod.h
-PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/tod.h
+$(PROJECT_INCLUDE)/rtems/score/todimpl.h: include/rtems/score/todimpl.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
+ $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/todimpl.h
+PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/todimpl.h
$(PROJECT_INCLUDE)/rtems/score/userext.h: include/rtems/score/userext.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/userext.h
diff --git a/cpukit/score/src/coretod.c b/cpukit/score/src/coretod.c
index 1dcf19fea7..28df21f598 100644
--- a/cpukit/score/src/coretod.c
+++ b/cpukit/score/src/coretod.c
@@ -18,7 +18,7 @@
#include "config.h"
#endif
-#include <rtems/score/tod.h>
+#include <rtems/score/todimpl.h>
void _TOD_Handler_initialization(void)
{
diff --git a/cpukit/score/src/coretodget.c b/cpukit/score/src/coretodget.c
index 3e2cb4f4de..b45930a2a4 100644
--- a/cpukit/score/src/coretodget.c
+++ b/cpukit/score/src/coretodget.c
@@ -18,7 +18,7 @@
#include "config.h"
#endif
-#include <rtems/score/tod.h>
+#include <rtems/score/todimpl.h>
#include <rtems/score/isrlevel.h>
#include <rtems/score/watchdogimpl.h>
diff --git a/cpukit/score/src/coretodgetuptimetimespec.c b/cpukit/score/src/coretodgetuptimetimespec.c
index 16e519e36b..ac053b93bc 100644
--- a/cpukit/score/src/coretodgetuptimetimespec.c
+++ b/cpukit/score/src/coretodgetuptimetimespec.c
@@ -18,7 +18,7 @@
#include "config.h"
#endif
-#include <rtems/score/tod.h>
+#include <rtems/score/todimpl.h>
void _TOD_Get_uptime_as_timespec(
struct timespec *uptime
diff --git a/cpukit/score/src/coretodset.c b/cpukit/score/src/coretodset.c
index 23ba2e6ce8..f2f743ddc8 100644
--- a/cpukit/score/src/coretodset.c
+++ b/cpukit/score/src/coretodset.c
@@ -18,7 +18,7 @@
#include "config.h"
#endif
-#include <rtems/score/tod.h>
+#include <rtems/score/todimpl.h>
#include <rtems/score/threaddispatch.h>
#include <rtems/score/watchdogimpl.h>
diff --git a/cpukit/score/src/coretodtickle.c b/cpukit/score/src/coretodtickle.c
index 41644b980c..4586e8496f 100644
--- a/cpukit/score/src/coretodtickle.c
+++ b/cpukit/score/src/coretodtickle.c
@@ -18,7 +18,7 @@
#include "config.h"
#endif
-#include <rtems/score/tod.h>
+#include <rtems/score/todimpl.h>
#include <rtems/score/watchdogimpl.h>
#include <rtems/config.h>
diff --git a/cpukit/score/src/coretodtickspersec.c b/cpukit/score/src/coretodtickspersec.c
index 58e7e04c88..9744cbb9eb 100644
--- a/cpukit/score/src/coretodtickspersec.c
+++ b/cpukit/score/src/coretodtickspersec.c
@@ -18,7 +18,7 @@
#include "config.h"
#endif
-#include <rtems/score/tod.h>
+#include <rtems/score/todimpl.h>
#include <rtems/config.h>
uint32_t TOD_TICKS_PER_SECOND_method(void)
diff --git a/cpukit/score/src/threaddispatch.c b/cpukit/score/src/threaddispatch.c
index 09b5dbe105..c659f9fd67 100644
--- a/cpukit/score/src/threaddispatch.c
+++ b/cpukit/score/src/threaddispatch.c
@@ -22,7 +22,7 @@
#include <rtems/score/apiext.h>
#include <rtems/score/isr.h>
#include <rtems/score/threadimpl.h>
-#include <rtems/score/tod.h>
+#include <rtems/score/todimpl.h>
#include <rtems/score/userextimpl.h>
#include <rtems/score/wkspace.h>
diff --git a/cpukit/score/src/timespecaddto.c b/cpukit/score/src/timespecaddto.c
index a1d6c871c0..ef6091002a 100644
--- a/cpukit/score/src/timespecaddto.c
+++ b/cpukit/score/src/timespecaddto.c
@@ -19,7 +19,7 @@
#endif
#include <rtems/score/timespec.h>
-#include <rtems/score/tod.h>
+#include <rtems/score/todimpl.h>
#include <rtems/score/watchdog.h>
uint32_t _Timespec_Add_to(
diff --git a/cpukit/score/src/timespecdivide.c b/cpukit/score/src/timespecdivide.c
index 3434fdf7f1..a4a1b8515d 100644
--- a/cpukit/score/src/timespecdivide.c
+++ b/cpukit/score/src/timespecdivide.c
@@ -19,7 +19,7 @@
#endif
#include <rtems/score/timespec.h>
-#include <rtems/score/tod.h>
+#include <rtems/score/todimpl.h>
void _Timespec_Divide(
const struct timespec *lhs,
diff --git a/cpukit/score/src/timespecdividebyinteger.c b/cpukit/score/src/timespecdividebyinteger.c
index 6d97dcbc41..9d146db52f 100644
--- a/cpukit/score/src/timespecdividebyinteger.c
+++ b/cpukit/score/src/timespecdividebyinteger.c
@@ -20,7 +20,7 @@
#endif
#include <rtems/score/timespec.h>
-#include <rtems/score/tod.h>
+#include <rtems/score/todimpl.h>
void _Timespec_Divide_by_integer(
const struct timespec *time,
diff --git a/cpukit/score/src/timespecfromticks.c b/cpukit/score/src/timespecfromticks.c
index 3e994a03f2..231da3313f 100644
--- a/cpukit/score/src/timespecfromticks.c
+++ b/cpukit/score/src/timespecfromticks.c
@@ -19,7 +19,7 @@
#endif
#include <rtems/score/timespec.h>
-#include <rtems/score/tod.h>
+#include <rtems/score/todimpl.h>
#include <rtems/config.h>
void _Timespec_From_ticks(
diff --git a/cpukit/score/src/timespecisvalid.c b/cpukit/score/src/timespecisvalid.c
index 61dce72830..98bb3ba032 100644
--- a/cpukit/score/src/timespecisvalid.c
+++ b/cpukit/score/src/timespecisvalid.c
@@ -19,7 +19,7 @@
#endif
#include <rtems/score/timespec.h>
-#include <rtems/score/tod.h>
+#include <rtems/score/todimpl.h>
bool _Timespec_Is_valid(
const struct timespec *time
diff --git a/cpukit/score/src/timespecsubtract.c b/cpukit/score/src/timespecsubtract.c
index 8d29f17197..14fcdcc28f 100644
--- a/cpukit/score/src/timespecsubtract.c
+++ b/cpukit/score/src/timespecsubtract.c
@@ -19,7 +19,7 @@
#endif
#include <rtems/score/timespec.h>
-#include <rtems/score/tod.h>
+#include <rtems/score/todimpl.h>
void _Timespec_Subtract(
const struct timespec *start,
diff --git a/cpukit/score/src/timespectoticks.c b/cpukit/score/src/timespectoticks.c
index 12eaadaa96..a6288184e7 100644
--- a/cpukit/score/src/timespectoticks.c
+++ b/cpukit/score/src/timespectoticks.c
@@ -16,7 +16,7 @@
#endif
#include <rtems/score/timespec.h>
-#include <rtems/score/tod.h>
+#include <rtems/score/todimpl.h>
#include <rtems/config.h>
/**