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
AtomicBox<T> is a Box type designed to be used across threads, however, it
implements the Send and Sync traits for all types T.
This allows non-Send types such as Rc and non-Sync types such as Cell to
be used across thread boundaries which can trigger undefined behavior and
memory corruption.
lever
0.1.1-alpha.11
AtomicBox<T>
is aBox
type designed to be used across threads, however, itimplements the
Send
andSync
traits for all typesT
.This allows non-Send types such as
Rc
and non-Sync types such asCell
tobe used across thread boundaries which can trigger undefined behavior and
memory corruption.
See advisory page for additional details.
The text was updated successfully, but these errors were encountered: