Closed JimViebke closed 7 years ago
Each thread needs to respond to a toggled flag and securely shut itself down. Maybe an atomic<bool>?
atomic<bool>
The main thread needs a detection mechanism (possibly join()) in order to know when each thread has finished.
join()
Partially implemented with d718382.
Partially implemented in 154bb8b and finished in 3011ec7.
Each thread needs to respond to a toggled flag and securely shut itself down. Maybe an
atomic<bool>
?The main thread needs a detection mechanism (possibly
join()
) in order to know when each thread has finished.