2018-02-22 13:09:53 +07:00
|
|
|
// threads1.rs
|
2019-11-11 22:51:38 +07:00
|
|
|
// Make this compile! Execute `rustlings hint threads1` for hints :)
|
2021-01-06 19:47:20 +07:00
|
|
|
// The idea is the thread spawned on line 22 is completing jobs while the main thread is
|
2020-12-08 16:08:25 +07:00
|
|
|
// monitoring progress until 10 jobs are completed. Because of the difference between the
|
|
|
|
// spawned threads' sleep time, and the waiting threads sleep time, when you see 6 lines
|
2019-11-11 22:51:38 +07:00
|
|
|
// of "waiting..." and the program ends without timing out when running,
|
2015-09-30 00:39:25 +06:00
|
|
|
// you've got it :)
|
|
|
|
|
2019-11-11 19:38:24 +07:00
|
|
|
// I AM NOT DONE
|
|
|
|
|
2015-09-30 00:39:25 +06:00
|
|
|
use std::sync::Arc;
|
|
|
|
use std::thread;
|
2016-02-09 03:13:45 +06:00
|
|
|
use std::time::Duration;
|
2015-09-30 00:39:25 +06:00
|
|
|
|
|
|
|
struct JobStatus {
|
|
|
|
jobs_completed: u32,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let status = Arc::new(JobStatus { jobs_completed: 0 });
|
|
|
|
let status_shared = status.clone();
|
|
|
|
thread::spawn(move || {
|
|
|
|
for _ in 0..10 {
|
2016-02-09 03:13:45 +06:00
|
|
|
thread::sleep(Duration::from_millis(250));
|
2015-09-30 00:39:25 +06:00
|
|
|
status_shared.jobs_completed += 1;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
while status.jobs_completed < 10 {
|
|
|
|
println!("waiting... ");
|
2016-02-09 03:13:45 +06:00
|
|
|
thread::sleep(Duration::from_millis(500));
|
2015-09-30 00:39:25 +06:00
|
|
|
}
|
|
|
|
}
|