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