stracers-core 0.1.0

Library for tracing system calls and signals
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[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};