#[cfg(not(all(
target_os = "linux",
any(target_arch = "x86_64", target_arch = "aarch64")
)))]
compile_error!("stracers-core only supports Linux on x86_64 or aarch64");
pub mod arch;
pub mod event;
pub mod memory;
pub mod platform;
pub mod tracer;
pub use event::SyscallEvent;
pub use tracer::{Tracer, TracerOptions};