| 411 | class BthreadCond { |
| 412 | public: |
| 413 | BthreadCond() { |
| 414 | bthread_cond_init(&_cond, NULL); |
| 415 | bthread_mutex_init(&_mutex, NULL); |
| 416 | _count = 1; |
| 417 | } |
| 418 | ~BthreadCond() { |
| 419 | bthread_mutex_destroy(&_mutex); |
| 420 | bthread_cond_destroy(&_cond); |
nothing calls this directly
no test coverage detected