Notify a single waiter on this condition variable.
| 69 | |
| 70 | /// Notify a single waiter on this condition variable. |
| 71 | void NotifyOne() { pthread_cond_signal(&cv_); } |
| 72 | |
| 73 | /// Notify all waiters on this condition variable. |
| 74 | void NotifyAll() { pthread_cond_broadcast(&cv_); } |
no outgoing calls