1 //! Common types and definitions used across `gdbstub`. 2 3 mod signal; 4 5 pub use self::signal::Signal; 6 7 /// Thread ID 8 pub type Tid = core::num::NonZeroUsize; 9 10 /// Process ID 11 pub type Pid = core::num::NonZeroUsize; 12