From 0dd6b195d76fd6a491c8e6aef4bbc8ab36a5ec7d Mon Sep 17 00:00:00 2001 From: Evelyne Donnaes Date: Mon, 20 Jul 2020 17:40:41 +0100 Subject: [PATCH] Fixed doxygen comment --- rtos/include/rtos/Mutex.h | 2 +- rtos/include/rtos/Semaphore.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rtos/include/rtos/Mutex.h b/rtos/include/rtos/Mutex.h index 15cdf9dee9..1b3d387c44 100644 --- a/rtos/include/rtos/Mutex.h +++ b/rtos/include/rtos/Mutex.h @@ -139,7 +139,7 @@ public: bool trylock_until(uint64_t millisec); /** Try to lock the mutex until specified time - @param abs_time absolute timeout time, referenced to Kernel::get_ms_count() + @param abs_time absolute timeout time, referenced to Kernel::Clock @return true if the mutex was acquired, false otherwise. @note the underlying RTOS may have a limit to the maximum wait time due to internal 32-bit computations, but this is guaranteed to work if the diff --git a/rtos/include/rtos/Semaphore.h b/rtos/include/rtos/Semaphore.h index a28cb24694..5bf1a031c3 100644 --- a/rtos/include/rtos/Semaphore.h +++ b/rtos/include/rtos/Semaphore.h @@ -112,7 +112,7 @@ public: bool try_acquire_until(uint64_t millisec); /** Wait until a Semaphore resource becomes available. - @param millisec absolute timeout time, referenced to Kernel::get_ms_count() + @param millisec absolute timeout time, referenced to Kernel::Clock @return true if a resource was acquired, false otherwise. @note the underlying RTOS may have a limit to the maximum wait time due to internal 32-bit computations, but this is guaranteed to work if the