You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Aren't Mutex implemented using OS-level synchronization primitives, which may involve atomic operations? The above statements suggest that Mutex in Rust directly uses atomics within its implementation.
The text was updated successfully, but these errors were encountered:
Type of error
Minor technical mistake
Location of the error
All the other concurrency primitives, such as mutexes and condition variables, are implemented using atomic operations.
Description of the error
Aren't
Mutex
implemented using OS-level synchronization primitives, which may involve atomic operations? The above statements suggest that Mutex in Rust directly uses atomics within its implementation.The text was updated successfully, but these errors were encountered: