| 61 | CheckPointStat::CheckPointStat() : impl_(new CheckPointStatImpl()) {} |
| 62 | |
| 63 | CheckPointStat::~CheckPointStat() { |
| 64 | if (impl_->buf) munmap(impl_->buf, impl_->len); |
| 65 | } |
| 66 | |
| 67 | comm::RetCode CheckPointStat::Init(const string &dir, const string &file) { |
| 68 | if (dir.empty() || file.empty()) |
nothing calls this directly
no outgoing calls
no test coverage detected