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
The MpMcQueue drop implementation is not optimized, as it uses the normal dequeue method, which assumes a shared reference and prevents race condition. drop gives us a mutable reference, which means that the implementation could skip the atomic operations, and all the care for synchronization.
The
MpMcQueue
drop implementation is not optimized, as it uses the normaldequeue
method, which assumes a shared reference and prevents race condition.drop
gives us a mutable reference, which means that the implementation could skip the atomic operations, and all the care for synchronization.See #483 (comment)
The text was updated successfully, but these errors were encountered: