1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
//! Primitive abstractions over OS identifiers.
//!
//! Features
//!
//! - `thread-name` Enables function `get_current_thread_name`

#![no_std]
#![cfg_attr(feature = "cargo-clippy", allow(clippy::style))]
#![warn(missing_docs)]

mod data;
pub mod thread;
pub mod process;

pub use data::ThreadName;
pub use thread::ThreadId;
pub use process::ProcessId;