Mixing atomics between C and Rust
The Rust Programming Language Forum
Mixing atomics between C and Rust
Hi, is it legal to use atomics from both C and Rust at the same time? __atomic_store_n(armed, 1, __ATOMIC_RELEASE); And then on the same pointer: armed.load(Ordering::Acquire); Not C++ !
0 comments
No comments yet.