xref: /third_party/rust/crates/nix/src/sys/ptrace/mod.rs
  • Home
  • History
  • Annotate Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /third_party/rust/crates/nix/src/sys/ptrace/
13da5c369Sopenharmony_ci///! Provides helpers for making ptrace system calls
23da5c369Sopenharmony_ci
33da5c369Sopenharmony_ci#[cfg(any(target_os = "android", target_os = "linux"))]
43da5c369Sopenharmony_cimod linux;
53da5c369Sopenharmony_ci
63da5c369Sopenharmony_ci#[cfg(any(target_os = "android", target_os = "linux"))]
73da5c369Sopenharmony_cipub use self::linux::*;
83da5c369Sopenharmony_ci
93da5c369Sopenharmony_ci#[cfg(any(
103da5c369Sopenharmony_ci    target_os = "dragonfly",
113da5c369Sopenharmony_ci    target_os = "freebsd",
123da5c369Sopenharmony_ci    target_os = "macos",
133da5c369Sopenharmony_ci    target_os = "netbsd",
143da5c369Sopenharmony_ci    target_os = "openbsd"
153da5c369Sopenharmony_ci))]
163da5c369Sopenharmony_cimod bsd;
173da5c369Sopenharmony_ci
183da5c369Sopenharmony_ci#[cfg(any(
193da5c369Sopenharmony_ci    target_os = "dragonfly",
203da5c369Sopenharmony_ci    target_os = "freebsd",
213da5c369Sopenharmony_ci    target_os = "macos",
223da5c369Sopenharmony_ci    target_os = "netbsd",
233da5c369Sopenharmony_ci    target_os = "openbsd"
243da5c369Sopenharmony_ci))]
253da5c369Sopenharmony_cipub use self::bsd::*;
26

Indexes created Thu Nov 07 10:32:03 CST 2024