Explorar o código

Set thread pool `is_running` to false on shutdown

Feoramund hai 1 ano
pai
achega
9dcf345795
Modificáronse 1 ficheiros con 1 adicións e 0 borrados
  1. 1 0
      core/thread/thread_pool.odin

+ 1 - 0
core/thread/thread_pool.odin

@@ -225,6 +225,7 @@ pool_stop_all_tasks :: proc(pool: ^Pool, exit_code: int = 1) {
 //
 // The pool must still be destroyed after this.
 pool_shutdown :: proc(pool: ^Pool, exit_code: int = 1) {
+	intrinsics.atomic_store(&pool.is_running, false)
 	sync.guard(&pool.mutex)
 
 	for t in pool.threads {