| 61 | } |
| 62 | |
| 63 | size_t Executor::total_active_tasks() const { |
| 64 | size_t total = 0; |
| 65 | for (const auto* r : mRunners) { |
| 66 | if (r) { |
| 67 | total += r->active_task_count(); |
| 68 | } |
| 69 | } |
| 70 | return total; |
| 71 | } |
| 72 | |
| 73 | // Public API functions |
| 74 |
no test coverage detected