Viewing profile — ozars
ozars
HN member- Joined
- Fri, Apr 16, 2021, 12:05 AM UTC
- HN karma
- -1
- Public activity
- 3 items
- HN profile
- View on Hacker News ↗
About ozars
No profile information was provided.
Recent public activity
-
comment
Comment #45090627
huh. I had no idea. Fair.
-
comment
Comment #45090603
Shared mutability can cause race conditions in single-threaded environments as well, if you need asynchronous contexts where mutations can be interleaved between suspension points.…
-
comment
Comment #45088930
Rust has Arc and Weak that can be used for solving it in a similar way C++ does. The primary difference is forcing usage of Mutex to avoid a large class of data race issues IMHO, a…