View main.rs
use nix::sys::ptrace; | |
use nix::sys::signal::Signal; | |
use nix::sys::wait::{WaitStatus, wait}; | |
use nix::unistd::{fork, ForkResult, Pid}; | |
use std::collections::HashMap; | |
use std::ffi::c_void; | |
use std::os::unix::process::CommandExt; | |
use std::process::{Command, exit}; |