| 109 | } |
| 110 | |
| 111 | void KeepSyncThread::ClearSyncCtrl() { |
| 112 | QLVerb("KeepSyncThread::ClearSyncCtrl"); |
| 113 | |
| 114 | time_t last_clear_time{config::GlobalConfig::GetThreadInstance()-> |
| 115 | GetLastModTime(impl_->store->GetTopicID())}; |
| 116 | |
| 117 | if (last_clear_time != impl_->last_clear_time) { |
| 118 | impl_->last_clear_time = last_clear_time; |
| 119 | impl_->store->GetSyncCtrl()->ClearSyncCtrl(); |
| 120 | } |
| 121 | } |
| 122 | |
| 123 | |
| 124 | void KeepSyncThread::MakeCheckPoint() { |
nothing calls this directly
no test coverage detected