1 2 3 4 5 6 7 8 9 10 11
//! Contains structs to represent process and thread identifiers #![no_std] #![cfg_attr(feature = "cargo-clippy", allow(clippy::style))] #![warn(missing_docs)] pub mod thread; pub mod process; pub use thread::ThreadId; pub use process::ProcessId;