| 29 | namespace phxbinlog { |
| 30 | |
| 31 | MasterStorage::MasterStorage(const Option *option) { |
| 32 | |
| 33 | option_ = option; |
| 34 | pthread_rwlock_init(&mutex_, NULL); |
| 35 | } |
| 36 | |
| 37 | MasterStorage::~MasterStorage() { |
| 38 | pthread_rwlock_destroy(&mutex_); |
nothing calls this directly
no outgoing calls
no test coverage detected