| 154 | } |
| 155 | |
| 156 | void* cv_bmutex_waiter(void* void_arg) { |
| 157 | WrapperArg* a = (WrapperArg*)void_arg; |
| 158 | std::unique_lock<bthread_mutex_t> lck(*a->mutex.native_handler()); |
| 159 | while (!stop) { |
| 160 | a->cond.wait(lck); |
| 161 | } |
| 162 | return NULL; |
| 163 | } |
| 164 | |
| 165 | void* cv_mutex_waiter(void* void_arg) { |
| 166 | WrapperArg* a = (WrapperArg*)void_arg; |
nothing calls this directly
no test coverage detected