Skip to main content

nix/sys/ptrace/
mod.rs

1//! Provides helpers for making ptrace system calls
2
3#[cfg(linux_android)]
4mod linux;
5
6#[cfg(linux_android)]
7pub use self::linux::*;
8
9#[cfg(bsd)]
10mod bsd;
11
12#[cfg(bsd)]
13pub use self::bsd::*;