Fixed doxygen comment

pull/13317/head
Evelyne Donnaes 2020-07-20 17:40:41 +01:00
parent 3a8989a247
commit 0dd6b195d7
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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