hstrace 0.0.5

Syscall tracing from command line and as a library
Documentation
1
2
3
4
5
6
7
8
9
10
use hstrace::prelude::*;

fn main() {
    let mut tracer = HStraceBuilder::new().pid(50000).build();
    tracer.start().unwrap();

    for call in tracer.iter_as_syscall() {
        println!("TRACE: {:?}", call);
    }
}