AtomicDouble<T>
A Rust library which provides 128-bit atomic operations for generic types on supported architectures (currently only x86_64 with cmpxchg16b is supported). In cases where atomic operations can't be supported fallback implementation using spin-locks has been provided.
You can use the AtomicDouble::<T>::is_lock_free()
function to check whether native atomic operations are supported for a given type.
Note that the library is tailor made for 128-bit operations, types violating the size constraints will use the fallback implementation.
Fallback implementation is enabled by default and can be disabled by adding default-features = false
to the dependency declaration.
This crate requires nightly.
Add this to your Cargo.toml
:
toml
[dependencies]
atomicdouble = "0.1.1"
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
This crate is effectively a 128-bit only version of Atomic<T>
crate. Atomic<T>
crate doesn't work for 128 bit atomics for now, as rust doesnt have support for AtomicU128/AtomicI128 yet. In the mean time AtomicDouble