| 56 | native_handler_type native_handler() { return &_cond; } |
| 57 | |
| 58 | void wait(std::unique_lock<bthread::Mutex>& lock) { |
| 59 | bthread_cond_wait(&_cond, lock.mutex()->native_handler()); |
| 60 | } |
| 61 | |
| 62 | void wait(std::unique_lock<bthread_mutex_t>& lock) { |
| 63 | bthread_cond_wait(&_cond, lock.mutex()); |
nothing calls this directly
no test coverage detected