stracers_core/lib.rs
1#[cfg(not(all(
2 target_os = "linux",
3 any(target_arch = "x86_64", target_arch = "aarch64")
4)))]
5compile_error!("stracers-core only supports Linux on x86_64 or aarch64");
6
7pub mod arch;
8pub mod event;
9pub mod memory;
10pub mod platform;
11pub mod tracer;
12
13pub use event::SyscallEvent;
14pub use tracer::{Tracer, TracerOptions};