mirror of https://gitee.com/bigwinds/arangodb
Fix documentation of timeout unit.
This commit is contained in:
parent
bfbbe18c57
commit
a79c5801d8
|
@ -96,7 +96,7 @@ void ConditionLocker::wait () {
|
|||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief waits for an event to occur, with a timeout
|
||||
/// @brief waits for an event to occur, with a timeout in microseconds
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
bool ConditionLocker::wait (uint64_t delay) {
|
||||
|
|
|
@ -139,7 +139,7 @@ namespace triagens {
|
|||
void wait ();
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief waits for an event to occur, using a timeout
|
||||
/// @brief waits for an event to occur, using a timeout in micro seconds
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
bool wait (uint64_t);
|
||||
|
|
|
@ -94,7 +94,7 @@ void ConditionVariable::wait () {
|
|||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief waits for an event with timeout in milli seconds
|
||||
/// @brief waits for an event with timeout in micro seconds
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
bool ConditionVariable::wait (uint64_t delay) {
|
||||
|
|
|
@ -140,7 +140,7 @@ namespace triagens {
|
|||
void wait ();
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief waits for an event with timeout in milli seconds
|
||||
/// @brief waits for an event with timeout in micro seconds
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
bool wait (uint64_t);
|
||||
|
|
Loading…
Reference in New Issue