Indicate that a thread is done executing.
| 361 | |
| 362 | /// Indicate that a thread is done executing. |
| 363 | void thread_done() { |
| 364 | if (running_threads.fetch_sub(1) == 1) { |
| 365 | execution_done_event.signal(); |
| 366 | } |
| 367 | } |
| 368 | |
| 369 | /// Get the start of the next batch and the batch size. |
| 370 | /// Important, may be a number larger than available number of tests |