Merge pull request #470 from Enselic/fix-race

races.md: data race -> race condition to violate memory safety
pull/471/head
Yuki Okushi 4 months ago committed by GitHub
commit 97e84a38c9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -60,8 +60,8 @@ thread::spawn(move || {
println!("{}", data[idx.load(Ordering::SeqCst)]);
```
We can cause a data race if we instead do the bound check in advance, and then
unsafely access the data with an unchecked value:
We can cause a race condition to violate memory safety if we instead do the bound
check in advance, and then unsafely access the data with an unchecked value:
```rust,no_run
use std::thread;

Loading…
Cancel
Save