From bbd7ea22e18e7527011c9361be34a7bbdb0eb318 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 16 Dec 2008 15:58:50 +0000 Subject: 2008-12-16 Joel Sherrill * include/rtems++/rtemsEvent.h, include/rtems++/rtemsMessageQueue.h, include/rtems++/rtemsSemaphore.h, src/rtemsTask.cc: Use public API not _TOD_Microseconds_per_tick. --- c/src/librtems++/include/rtems++/rtemsSemaphore.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'c/src/librtems++/include/rtems++/rtemsSemaphore.h') diff --git a/c/src/librtems++/include/rtems++/rtemsSemaphore.h b/c/src/librtems++/include/rtems++/rtemsSemaphore.h index be68a0513e..cadf4288b8 100644 --- a/c/src/librtems++/include/rtems++/rtemsSemaphore.h +++ b/c/src/librtems++/include/rtems++/rtemsSemaphore.h @@ -128,9 +128,10 @@ private: const rtems_status_code rtemsSemaphore::obtain(const bool wait, const uint32_t micro_secs) { - rtems_interval usecs = - micro_secs && (micro_secs < _TOD_Microseconds_per_tick) ? - _TOD_Microseconds_per_tick : micro_secs; + rtems_interval usecs = micro_secs && + (micro_secs < rtems_configuration_get_microseconds_per_tick()) ? + rtems_configuration_get_microseconds_per_tick() : micro_secs; + return set_status_code(rtems_semaphore_obtain(id, wait ? RTEMS_WAIT : RTEMS_NO_WAIT, -- cgit v1.2.3