소스 검색

Drop

master
Noelle 4 년 전
부모
커밋
f439c1417d
1개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. 10
    0
      src/lib.rs

+ 10
- 0
src/lib.rs 파일 보기

@@ -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<()>,

Loading…
취소
저장