Open
Description
The following code currently uses an AtomicUsize
to store an address, and it needs to be accessed atomically. We should consider using Atomic<Address>
from the crate (https://crates.io/crates/atomic).
The following code currently uses an AtomicUsize
to store an address, and it needs to be accessed atomically. We should consider using Atomic<Address>
from the crate (https://crates.io/crates/atomic).