mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-02 01:44:06 -04:00
all ConditionVar::wait() methods need to be BLOCKING
This commit is contained in:
parent
f651750539
commit
81caaa764b
@ -44,8 +44,8 @@ private:
|
|||||||
PUBLISHED:
|
PUBLISHED:
|
||||||
INLINE MutexDebug &get_mutex() const;
|
INLINE MutexDebug &get_mutex() const;
|
||||||
|
|
||||||
void wait();
|
BLOCKING void wait();
|
||||||
void wait(double timeout);
|
BLOCKING void wait(double timeout);
|
||||||
void notify();
|
void notify();
|
||||||
virtual void output(ostream &out) const;
|
virtual void output(ostream &out) const;
|
||||||
|
|
||||||
|
@ -44,8 +44,8 @@ private:
|
|||||||
PUBLISHED:
|
PUBLISHED:
|
||||||
INLINE MutexDebug &get_mutex() const;
|
INLINE MutexDebug &get_mutex() const;
|
||||||
|
|
||||||
void wait();
|
BLOCKING void wait();
|
||||||
void wait(double timeout);
|
BLOCKING void wait(double timeout);
|
||||||
void notify();
|
void notify();
|
||||||
void notify_all();
|
void notify_all();
|
||||||
virtual void output(ostream &out) const;
|
virtual void output(ostream &out) const;
|
||||||
|
@ -44,8 +44,8 @@ private:
|
|||||||
PUBLISHED:
|
PUBLISHED:
|
||||||
INLINE MutexDirect &get_mutex() const;
|
INLINE MutexDirect &get_mutex() const;
|
||||||
|
|
||||||
INLINE void wait();
|
BLOCKING INLINE void wait();
|
||||||
INLINE void wait(double timeout);
|
BLOCKING INLINE void wait(double timeout);
|
||||||
INLINE void notify();
|
INLINE void notify();
|
||||||
INLINE void notify_all();
|
INLINE void notify_all();
|
||||||
void output(ostream &out) const;
|
void output(ostream &out) const;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user