2 unstable releases

0.2.0 Sep 12, 2021
0.1.0 May 20, 2020

#224 in Concurrency

Download history 12598/week @ 2023-12-06 15688/week @ 2023-12-13 16277/week @ 2023-12-20 10622/week @ 2023-12-27 14695/week @ 2024-01-03 18790/week @ 2024-01-10 24346/week @ 2024-01-17 17580/week @ 2024-01-24 23191/week @ 2024-01-31 34438/week @ 2024-02-07 16714/week @ 2024-02-14 9112/week @ 2024-02-21 11483/week @ 2024-02-28 16445/week @ 2024-03-06 18697/week @ 2024-03-13 22881/week @ 2024-03-20

70,948 downloads per month
Used in 41 crates (2 directly)

MIT/Apache

33KB
216 lines

atomic-shim

Atomic types shims for unsupported architectures.

This crate provides shims for std::sync::AtomicU64 and std::sync::AtomicI64 for mips and powerpc.

The std primitives are not available on all platforms, and that makes it tricky to write code for mips, such as OpenWRT Routers. This crate provides it's own AtomicU64 and AtomicI64, which can directly replace the std::sync structs.

The crate does target detection and on supported architectures it will use std::sync structures. When it detects it is running on unsupported platforms, it fallbacks to the shim implementation, using crossbeam Mutex.

For testing purposes, and for other reasons, you can replace the default implementation with the Mutex implementation by using the features = ["mutex"]

Usage

Replace any imports of use std::sync::AtomicU64; with use atomic_shim::Atomic64;

Installation

Add the dependency to your Cargo.toml, and optionally, exposes the mutex feature to test without cross-compiling:

[dependencies]
atomic-shim = "*"

# Optional
#[features]
#mutex = ["atomic-shim/mutex"]

Test

To run tests, it is important to enable the --features mutex.

cargo test --features mutex

Examples

A simple spinlock:

use std::sync::Arc;
use std::sync::atomic::Ordering;
use std::thread;
use atomic_shim::AtomicU64;

fn main() {
    let spinlock = Arc::new(AtomicU64::new(1));

    let spinlock_clone = spinlock.clone();
    let thread = thread::spawn(move|| {
        spinlock_clone.store(0, Ordering::SeqCst);
    });

    // Wait for the other thread to release the lock
    while spinlock.load(Ordering::SeqCst) != 0 {}

    if let Err(panic) = thread.join() {
        println!("Thread had an error: {:?}", panic);
    }
}

Keep a global count of live threads:

use std::sync::atomic::Ordering;
use atomic_shim::AtomicU64;

let global_thread_count = AtomicU64::new(0);

let old_thread_count = global_thread_count.fetch_add(1, Ordering::SeqCst);
println!("live threads: {}", old_thread_count + 1);

License

Licensed under either of

at your option.

Contribution

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.

Dependencies

~28KB