| 50 | } |
| 51 | |
| 52 | void DecayCounter::dump(ceph::Formatter *f) const |
| 53 | { |
| 54 | decay(); |
| 55 | f->dump_float("value", val); |
| 56 | f->dump_float("halflife", rate.get_halflife()); |
| 57 | } |
| 58 | |
| 59 | std::list<DecayCounter> DecayCounter::generate_test_instances() |
| 60 | { |
nothing calls this directly
no test coverage detected