1
0
Fork 0

Fix documentation of timeout unit.

This commit is contained in:
Max Neunhoeffer 2013-12-19 12:16:30 +01:00
parent bfbbe18c57
commit a79c5801d8
4 changed files with 4 additions and 4 deletions

View File

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

View File

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

View File

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

View File

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