2 releases

0.1.2 Jan 19, 2024
0.1.1 Jan 19, 2024
0.1.0 Jul 18, 2023

#289 in Concurrency

Download history 10/week @ 2024-01-08 439/week @ 2024-01-15 585/week @ 2024-01-22 618/week @ 2024-01-29 566/week @ 2024-02-05 420/week @ 2024-02-12 665/week @ 2024-02-19 1096/week @ 2024-02-26 912/week @ 2024-03-04 847/week @ 2024-03-11 717/week @ 2024-03-18 1062/week @ 2024-03-25 1073/week @ 2024-04-01 963/week @ 2024-04-08 736/week @ 2024-04-15

3,875 downloads per month
Used in 15 crates (7 directly)

MIT/Apache

61KB
575 lines

wasm_sync

Crates.io Docs.rs

wasm_sync offers synchronization primitives that work in both browser and native contexts.

In web browsers, use of atomic wait instructions on the main thread causes an error. This prevents the use of standard library synchronization primitives within web contexts. wasm_sync solves this problem by busy-spinning on the main thread. Other threads, like dedicated web workers, still use atomic wait instructions.

On native platforms, wasm_sync simply re-exports the standard library's synchronization primitives.

Supported primitives

  • wasm_sync::Condvar
  • wasm_sync::Mutex
  • wasm_sync::RwLock
  • wasm_sync::Once
  • wasm_sync::OnceLock

Usage

Instead of importing a standard library primitive, import the wasm_sync variant. For example:

use std::sync::Arc;
use std::thread;
use wasm_sync::Mutex;

let mutex = Arc::new(Mutex::new(0));
let c_mutex = Arc::clone(&mutex);

thread::spawn(move || {
    *c_mutex.lock().unwrap() = 10;
}).join().expect("thread::spawn failed");
assert_eq!(*mutex.lock().unwrap(), 10);

Dependencies

~0–2MB
~40K SLoC