| 20 | namespace brpc { |
| 21 | |
| 22 | InfoThread::InfoThread() |
| 23 | : _stop(false) |
| 24 | , _tid(0) { |
| 25 | pthread_mutex_init(&_mutex, NULL); |
| 26 | pthread_cond_init(&_cond, NULL); |
| 27 | } |
| 28 | |
| 29 | InfoThread::~InfoThread() { |
| 30 | pthread_mutex_destroy(&_mutex); |
nothing calls this directly
no test coverage detected