1 //! Common types and definitions.
2 
3 /// Thread ID
4 pub type Tid = core::num::NonZeroUsize;
5 
6 /// Process ID
7 pub type Pid = core::num::NonZeroUsize;
8