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/score/src/threadqtimeout.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpukit/score/src/threadqtimeout.c') diff --git a/cpukit/score/src/threadqtimeout.c b/cpukit/score/src/threadqtimeout.c index 3f052fcf6f..691f643493 100644 --- a/cpukit/score/src/threadqtimeout.c +++ b/cpukit/score/src/threadqtimeout.c @@ -119,12 +119,12 @@ void _Thread_queue_Add_timeout_realtime_timespec( } else if ( _Watchdog_Is_far_future_realtime_timespec( abstime ) ) { expire = WATCHDOG_MAXIMUM_TICKS; } else { - expire = _Watchdog_Realtime_from_timespec( abstime ); + expire = _Watchdog_Ticks_from_timespec( abstime ); } _Timecounter_Getnanotime( &now ); - if ( expire > _Watchdog_Realtime_from_timespec( &now ) ) { + if ( expire > _Watchdog_Ticks_from_timespec( &now ) ) { ISR_lock_Context lock_context; _ISR_lock_ISR_disable_and_acquire( -- cgit v1.2.3