lockfree 0.2.0

This crate provides concurrent data structures and a solution to the ABA problem as an alternative of hazard pointers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env sh

test_with_toolchain() {
    cargo $1 test --target x86_64-unknown-linux-gnu -- --test-threads=1 || exit 1
    cargo $1 test --release --target x86_64-unknown-linux-gnu -- --test-threads=1 || exit 1
}

test_with_toolchain +stable
test_with_toolchain +nightly

export RUSTFLAGS='-Z sanitizer=leak'
export LSAN_OPTIONS='fast_unwind_on_malloc=0'

test_with_toolchain +nightly