wait_on_address 0.1.4

Cross-platform atomic wait and wake (aka futex) functionality.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// Marks the crate as being compiled with nightly features enabled.
#[rustversion::nightly]
fn main() {
    println!("cargo::rustc-check-cfg=cfg(nightly)");
    println!("cargo:rustc-cfg=nightly");
}

/// Marks the crate as being compiled without nightly features.
#[rustversion::not(nightly)]
fn main() {
    println!("cargo::rustc-check-cfg=cfg(nightly)");
}