| 228 | } |
| 229 | |
| 230 | void DispatchQueue::start() |
| 231 | { |
| 232 | ceph_assert(!stop); |
| 233 | ceph_assert(!dispatch_thread.is_started()); |
| 234 | dispatch_thread.create("ms_dispatch"); |
| 235 | local_delivery_thread.create("ms_local"); |
| 236 | } |
| 237 | |
| 238 | void DispatchQueue::wait() |
| 239 | { |
nothing calls this directly
no test coverage detected