finish threads1 exercise

This commit is contained in:
lukaszKielar 2020-06-30 21:07:41 +02:00
parent 5d17c5aaa4
commit 21cd445b8d

View file

@ -5,9 +5,7 @@
// of "waiting..." and the program ends without timing out when running,
// you've got it :)
// I AM NOT DONE
use std::sync::Arc;
use std::sync::{Arc, Mutex};
use std::thread;
use std::time::Duration;
@ -16,15 +14,15 @@ struct JobStatus {
}
fn main() {
let status = Arc::new(JobStatus { jobs_completed: 0 });
let status_shared = status.clone();
let status = Arc::new(Mutex::new(JobStatus { jobs_completed: 0 }));
let mut status_shared = Arc::clone(&status);
thread::spawn(move || {
for _ in 0..10 {
thread::sleep(Duration::from_millis(250));
status_shared.jobs_completed += 1;
status_shared.lock().unwrap().jobs_completed += 1;
}
});
while status.jobs_completed < 10 {
while status.lock().unwrap().jobs_completed < 10 {
println!("waiting... ");
thread::sleep(Duration::from_millis(500));
}