diff options
-rw-r--r-- | src/backend/storage/lmgr/condition_variable.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/backend/storage/lmgr/condition_variable.c b/src/backend/storage/lmgr/condition_variable.c index 1e8559ed47b..112a518bae0 100644 --- a/src/backend/storage/lmgr/condition_variable.c +++ b/src/backend/storage/lmgr/condition_variable.c @@ -102,6 +102,8 @@ ConditionVariableSleep(ConditionVariable *cv, uint32 wait_event_info) /* * Wait for a condition variable to be signaled or a timeout to be reached. * + * The "timeout" is given in milliseconds. + * * Returns true when timeout expires, otherwise returns false. * * See ConditionVariableSleep() for general usage. |