1
2
3
4
5
6
7
//! Common types and definitions.

/// Thread ID
pub type Tid = core::num::NonZeroUsize;

/// Process ID
pub type Pid = core::num::NonZeroUsize;