From e85d043f0cd1a972745350f267e202393d929d2e Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 16 Dec 2008 20:55:45 +0000 Subject: 2008-12-16 Joel Sherrill * include/rtems++/rtemsEvent.h, include/rtems++/rtemsMessageQueue.h, include/rtems++/rtemsSemaphore.h, include/rtems++/rtemsTimer.h, src/rtemsTask.cc: Eliminate all public use of TOD conversion routines. --- c/src/librtems++/include/rtems++/rtemsTimer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'c/src/librtems++/include/rtems++/rtemsTimer.h') diff --git a/c/src/librtems++/include/rtems++/rtemsTimer.h b/c/src/librtems++/include/rtems++/rtemsTimer.h index cf6b76ab97..e106b7d1ec 100644 --- a/c/src/librtems++/include/rtems++/rtemsTimer.h +++ b/c/src/librtems++/include/rtems++/rtemsTimer.h @@ -98,7 +98,7 @@ const rtems_status_code rtemsTimer::fire_after(const rtems_interval micro_secs) (micro_secs < rtems_configuration_get_microseconds_per_tick()) ? rtems_configuration_get_microseconds_per_tick() : micro_secs; return set_status_code(rtems_timer_fire_after(id, - TOD_MICROSECONDS_TO_TICKS(usecs), + RTEMS_MICROSECONDS_TO_TICKS(usecs), common_handler, this)); } @@ -110,7 +110,7 @@ const rtems_status_code rtemsTimer::repeat_fire_at(const rtems_interval micro_se (micro_secs < rtems_configuration_get_microseconds_per_tick()) ? rtems_configuration_get_microseconds_per_tick() : micro_secs; return set_status_code(rtems_timer_fire_after(id, - TOD_MICROSECONDS_TO_TICKS(usecs), + RTEMS_MICROSECONDS_TO_TICKS(usecs), common_handler, this)); } -- cgit v1.2.3