Sign in
android
/
platform
/
external
/
rust
/
crates
/
gdbstub
/
038cb7ec07b7e93535e2f84db07c20abee0acc08
/
.
/
src
/
common
/
mod.rs
blob: d7c9136b2327aaa85486bf1896d2c13cd67608b7 [
file
] [
log
] [
blame
]
//! 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
;