hstrace 0.0.5

Syscall tracing from command line and as a library
Documentation
1
2
3
4
5
6
7
8
/// ptrace(PTRACE_GET_SYSCALL_INFO) operation
#[derive(Debug, FromPrimitive)]
pub(crate) enum PtraceOp {
    None = 0,
    Entry = 1,
    Exit = 2,
    Seccomp = 3,
}