Hacker News new | ask | show | jobs
by jdub 242 days ago
a data race is specific kind of race condition; it's not rust parlance, but that specificity comes up a lot in rust discussions because that's part of the value
1 comments

I meant the trait send sync things. I just thought it was obvious, since Rust is not the only language susceptible to data races.
> since Rust is not the only language susceptible to data races.

The point is rather that it’s not. The “trait send sync things” specify whether a value of the type is allowed to be respectively move or borrowed across thread boundaries.