summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/score/watchdogimpl.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2017-12-22 10:35:47 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-02-02 15:01:20 +0100
commit3a4e044e6461a6f03edbae94ca6efd91d4c206de (patch)
treedbd5b256298abf7df1343aca622bb856ac811d00 /cpukit/include/rtems/score/watchdogimpl.h
parentscore: Optimize watchdog tickle (diff)
downloadrtems-3a4e044e6461a6f03edbae94ca6efd91d4c206de.tar.bz2
score: Rename _Watchdog_Realtime_from_*()
Rename _Watchdog_Realtime_from_*() to _Watchdog_Ticks_from_*(). Update #3264.
Diffstat (limited to 'cpukit/include/rtems/score/watchdogimpl.h')
-rw-r--r--cpukit/include/rtems/score/watchdogimpl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/include/rtems/score/watchdogimpl.h b/cpukit/include/rtems/score/watchdogimpl.h
index f1693d9fda..9701fb772f 100644
--- a/cpukit/include/rtems/score/watchdogimpl.h
+++ b/cpukit/include/rtems/score/watchdogimpl.h
@@ -392,7 +392,7 @@ RTEMS_INLINE_ROUTINE bool _Watchdog_Is_far_future_realtime_timespec(
return ts->tv_sec > WATCHDOG_REALTIME_MAX_SECONDS;
}
-RTEMS_INLINE_ROUTINE uint64_t _Watchdog_Realtime_from_seconds(
+RTEMS_INLINE_ROUTINE uint64_t _Watchdog_Ticks_from_seconds(
uint32_t seconds
)
{
@@ -403,7 +403,7 @@ RTEMS_INLINE_ROUTINE uint64_t _Watchdog_Realtime_from_seconds(
return ticks;
}
-RTEMS_INLINE_ROUTINE uint64_t _Watchdog_Realtime_from_timespec(
+RTEMS_INLINE_ROUTINE uint64_t _Watchdog_Ticks_from_timespec(
const struct timespec *ts
)
{
@@ -420,7 +420,7 @@ RTEMS_INLINE_ROUTINE uint64_t _Watchdog_Realtime_from_timespec(
return ticks;
}
-RTEMS_INLINE_ROUTINE uint64_t _Watchdog_Realtime_from_sbintime(
+RTEMS_INLINE_ROUTINE uint64_t _Watchdog_Ticks_from_sbintime(
sbintime_t sbt
)
{