Viewing profile — johnhamlet
johnhamlet
HN member- Joined
- Sat, Jan 04, 2014, 1:39 AM UTC
- HN karma
- -4
- Public activity
- 5 items
- HN profile
- View on Hacker News ↗
About johnhamlet
No profile information was provided.
Recent public activity
-
comment
Comment #7009607
What does C++11's definitions have to do with anything? This is Rust.
-
comment
Comment #7009600
You: "not every non-deterministic piece of code is a race-condition" Wikipedia: "A race condition ... is ... where the output is dependent on the sequence or timing..." Boom! Heads…
-
comment
Comment #7009567
...but you can still have races with locking. Data races don't mean data corruption. It simply means the result is dependent on the scheduler or something else out of your control.…
-
comment
Comment #7009555
Two tasks A and B both send a message to task C. Does the message from A or the message from B get received by task C first? That's a race condition. "A race condition or race haza…
-
comment
Comment #7009502
"The Rust compiler normally disallows any code with race conditions" Lol what? Unless tasks cannot communicate at all, or they are scheduled entirely deterministically, how can the…