| 29 | namespace phxbinlog { |
| 30 | |
| 31 | ReplicationManager::ReplicationManager(const Option *option) { |
| 32 | pthread_mutex_init(&m_mutex, NULL); |
| 33 | option_ = option; |
| 34 | thread_fd_ = 0; |
| 35 | impl_ = NULL; |
| 36 | } |
| 37 | |
| 38 | ReplicationManager::~ReplicationManager() { |
| 39 | pthread_mutex_destroy(&m_mutex); |
nothing calls this directly
no outgoing calls
no test coverage detected