1 2 3 4 5 6
use nix::{Result, unistd::Pid}; pub trait RemoteOperation { fn inject(&mut self, pid: Pid, syscall: usize) -> Result<u64>; fn revert(&mut self, pid: Pid, syscall: usize) -> Result<u64>; }