| 55 | ContextWQ *work_queue = nullptr; |
| 56 | |
| 57 | explicit ThreadPoolSingleton(CephContext *cct) |
| 58 | : ThreadPool(cct, "Mirror::thread_pool", "tp_mirror", 1) { |
| 59 | work_queue = new ContextWQ("Mirror::work_queue", ceph::make_timespan(60), this); |
| 60 | |
| 61 | start(); |
| 62 | } |
| 63 | }; |
| 64 | |
| 65 | } // anonymous namespace |
nothing calls this directly
no test coverage detected