| 17 | class LockManager { |
| 18 | public: |
| 19 | LockManager(pthread_mutex_t *mutex) { |
| 20 | mutex_ = mutex; |
| 21 | pthread_mutex_lock(mutex_); |
| 22 | } |
| 23 | ~LockManager() { |
| 24 | pthread_mutex_unlock(mutex_); |
| 25 | } |
nothing calls this directly
no outgoing calls
no test coverage detected