diff options
| author | Roi Gabay <gabay@users.noreply.github.com> | 2023-08-20 21:09:10 +0300 |
|---|---|---|
| committer | Gabay <roigby@gmail.com> | 2023-08-21 16:19:30 +0300 |
| commit | af76794627ac9252650c8d3ec41d9afe251ca5e5 (patch) | |
| tree | 69a4f87c36008089e088ddfb3ee7433c152f71d6 | |
| parent | 64035f766fe7e363ab73dba3483f688a94595a90 (diff) | |
info.toml: update threads2 text.
the previous text does not appear in the provided link (https://doc.rust-lang.org/book/ch16-03-shared-state.html#atomic-reference-counting-with-arct).
| -rw-r--r-- | info.toml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1009,7 +1009,7 @@ and keep reading if you'd like more hints :) Do you now have an `Arc` `Mutex` `JobStatus` at the beginning of main? Like: `let status = Arc::new(Mutex::new(JobStatus { jobs_completed: 0 }));` Similar to the code in the example in the book that happens after the text -that says "We can use Arc<T> to fix this.". If not, give that a try! If you +that says "Sharing a Mutex<T> Between Multiple Threads". If not, give that a try! If you do and would like more hints, keep reading!! |
