Crate hstrace

Source
Expand description

Syscall tracing CLI & library made in Rust

Hstrace makes it possible to trace the syscalls a specific program and its child programs/threads are doing.

§Quick start

use hstrace::prelude::*;

// initializes and starts tracing
let mut tracer = HStraceBuilder::new()
    .pid(1000).build();
tracer.start();

Re-exports§

Modules§

Structs§

Enums§

Traits§