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
Leaning on core::sync::atomic won't work because core::sync::atomic::Atomic* are implemented using UnsafeCell, which isn't suitable for shared memory. See this explanation for why not.
Perhaps by leaning more on
core::sync::atomic
instead of using intrinsics.See https://github.com/Amanieu/atomic-rs/tree/master for inspiration.
The text was updated successfully, but these errors were encountered: