| 47 | typedef bthread_cond_t* native_handler_type; |
| 48 | |
| 49 | ConditionVariable() { |
| 50 | CHECK_EQ(0, bthread_cond_init(&_cond, NULL)); |
| 51 | } |
| 52 | ~ConditionVariable() { |
| 53 | CHECK_EQ(0, bthread_cond_destroy(&_cond)); |
| 54 | } |
nothing calls this directly
no test coverage detected