* Start all threads in the running list. This is only useful for save/load. * Usually threads are started when the job is created. */
| 109 | * Usually threads are started when the job is created. |
| 110 | */ |
| 111 | void LinkGraphSchedule::SpawnAll() |
| 112 | { |
| 113 | for (auto &it : this->running) { |
| 114 | it->SpawnThread(); |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | /** |
| 119 | * Clear all link graphs and jobs from the schedule. |
no test coverage detected