| 70 | }; |
| 71 | |
| 72 | void container::impl::common_work_queue::schedule(duration d, work f) { |
| 73 | // Note this is an unbounded work queue. |
| 74 | // A resource-safe implementation should be bounded. |
| 75 | if (finished_) return; |
| 76 | container_.schedule(d, make_work(&work_queue::impl::add_void, (work_queue::impl*)this, f)); |
| 77 | } |
| 78 | |
| 79 | void container::impl::common_work_queue::run_all_jobs() { |
| 80 | jobs j; |
nothing calls this directly
no test coverage detected