all ConditionVar::wait() methods need to be BLOCKING
This commit is contained in:
parent
f651750539
commit
81caaa764b
|
|
@ -44,8 +44,8 @@ private:
|
|||
PUBLISHED:
|
||||
INLINE MutexDebug &get_mutex() const;
|
||||
|
||||
void wait();
|
||||
void wait(double timeout);
|
||||
BLOCKING void wait();
|
||||
BLOCKING void wait(double timeout);
|
||||
void notify();
|
||||
virtual void output(ostream &out) const;
|
||||
|
||||
|
|
|
|||
|
|
@ -44,8 +44,8 @@ private:
|
|||
PUBLISHED:
|
||||
INLINE MutexDebug &get_mutex() const;
|
||||
|
||||
void wait();
|
||||
void wait(double timeout);
|
||||
BLOCKING void wait();
|
||||
BLOCKING void wait(double timeout);
|
||||
void notify();
|
||||
void notify_all();
|
||||
virtual void output(ostream &out) const;
|
||||
|
|
|
|||
|
|
@ -44,8 +44,8 @@ private:
|
|||
PUBLISHED:
|
||||
INLINE MutexDirect &get_mutex() const;
|
||||
|
||||
INLINE void wait();
|
||||
INLINE void wait(double timeout);
|
||||
BLOCKING INLINE void wait();
|
||||
BLOCKING INLINE void wait(double timeout);
|
||||
INLINE void notify();
|
||||
INLINE void notify_all();
|
||||
void output(ostream &out) const;
|
||||
|
|
|
|||
Loading…
Reference in New Issue