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
This is inherited from the underlying implementation for wasm32, from atomic_refcell, and means that you can't do the standard pattern of sharing Send values between threads by wrapping them in an Arc<Mutex<_>>.
The text was updated successfully, but these errors were encountered:
Replace `atomic_refcell` with `parking_lot` on wasm32.
`parking_lot` has had problems running on wasm32 before
(#1401)
but it works these days.
If we have problems again we can always switch to `std::sync::Mutex`.
Closes#3102
Replace `atomic_refcell` with `parking_lot` on wasm32.
`parking_lot` has had problems running on wasm32 before
(#1401)
but it works these days.
If we have problems again we can always switch to `std::sync::Mutex`.
Closes#3102
This is inherited from the underlying implementation for wasm32, from
atomic_refcell
, and means that you can't do the standard pattern of sharingSend
values between threads by wrapping them in anArc<Mutex<_>>
.The text was updated successfully, but these errors were encountered: