aarch64_std/
lib.rs

1#![cfg_attr(not(test), no_std)]
2
3#[cfg(feature = "alloc")]
4extern crate alloc;
5
6/// Useful synchronization primitives.
7pub mod sync;
8
9/// Thread utilities, including cooperative green threads.
10pub mod thread;
11
12/// Temporal quantification.
13pub mod time;