From 3a4e044e6461a6f03edbae94ca6efd91d4c206de Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Fri, 22 Dec 2017 10:35:47 +0100 Subject: score: Rename _Watchdog_Realtime_from_*() Rename _Watchdog_Realtime_from_*() to _Watchdog_Ticks_from_*(). Update #3264. --- cpukit/include/rtems/score/watchdogimpl.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpukit/include/rtems') 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 ) { -- cgit v1.2.3