//! Common types and definitions used across `gdbstub`.
pub use Signal;
/// Thread ID
pub type Tid = NonZeroUsize;
/// Process ID
pub type Pid = NonZeroUsize;
/// Endinanness.
///
/// This is used to report target endianness to the debugger as a
/// response to certain commands.