summaryrefslogtreecommitdiff
path: root/src/include/storage/condition_variable.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/storage/condition_variable.h')
-rw-r--r--src/include/storage/condition_variable.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/include/storage/condition_variable.h b/src/include/storage/condition_variable.h
index 7dac477d259..32e645c02a1 100644
--- a/src/include/storage/condition_variable.h
+++ b/src/include/storage/condition_variable.h
@@ -40,9 +40,7 @@ extern void ConditionVariableInit(ConditionVariable *cv);
* ConditionVariableSleep. Spurious wakeups are possible, but should be
* infrequent. After exiting the loop, ConditionVariableCancelSleep must
* be called to ensure that the process is no longer in the wait list for
- * the condition variable. Only one condition variable can be used at a
- * time, ie, ConditionVariableCancelSleep must be called before any attempt
- * is made to sleep on a different condition variable.
+ * the condition variable.
*/
extern void ConditionVariableSleep(ConditionVariable *cv, uint32 wait_event_info);
extern void ConditionVariableCancelSleep(void);