| 91 | } |
| 92 | |
| 93 | int main() { |
| 94 | io_context ctx; |
| 95 | |
| 96 | for (auto id{0U}; id != max_threads; ++id) { |
| 97 | ctx.co_spawn(workerThread(id)); |
| 98 | } |
| 99 | |
| 100 | Guide::show_info(); |
| 101 | Guide::start_time(); |
| 102 | |
| 103 | ctx.start(); |
| 104 | ctx.join(); |
| 105 | } |
nothing calls this directly
no test coverage detected