| 2217 | } |
| 2218 | |
| 2219 | void Objecter::start_tick() |
| 2220 | { |
| 2221 | ceph_assert(tick_event == 0); |
| 2222 | tick_event = |
| 2223 | timer.add_event(ceph::make_timespan(cct->_conf->objecter_tick_interval), |
| 2224 | &Objecter::tick, this); |
| 2225 | } |
| 2226 | |
| 2227 | void Objecter::tick() |
| 2228 | { |
nothing calls this directly
no test coverage detected