1
2
3
4
5
6
7
8
9
10
11
//! Common types and definitions used across `gdbstub`.

mod signal;

pub use self::signal::Signal;

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

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