| 69 | |
| 70 | |
| 71 | SyncCtrl::SyncCtrl(Store *const store) : impl_(new SyncCtrlImpl()) { |
| 72 | assert(impl_); |
| 73 | assert(store); |
| 74 | |
| 75 | impl_->store = store; |
| 76 | } |
| 77 | |
| 78 | SyncCtrl::~SyncCtrl() { |
| 79 | if (impl_->buf) munmap(impl_->buf, impl_->buf_size); |
nothing calls this directly
no outgoing calls
no test coverage detected