Noelle il y a 4 ans
Parent
révision
f439c1417d
1 fichiers modifiés avec 10 ajouts et 0 suppressions
  1. 10
    0
      src/lib.rs

+ 10
- 0
src/lib.rs Voir le fichier

@@ -46,6 +46,16 @@ impl ThreadPool {

}

impl Drop for ThreadPool {
fn drop(&mut self) {
for worker in &mut self.workers {
println!("Shutting down worker {}", worker.id);

worker.thread.join().unwrap();
}
}
}

struct Worker {
id: usize,
thread: thread::JoinHandle<()>,

Chargement…
Annuler
Enregistrer