kcas 0.1.0

A lock-free, allocation-free multi-word compare-and-swap library
Documentation
1
2
3
4
5
6
7
8
9
10
#![cfg(loom)]

mod common;

#[test]
fn two_thread_loom_test() {
    loom::model(|| {
        common::concurrency_test::<2, 3>();
    })
}