watch_proc

Function watch_proc 

Source
pub fn watch_proc(pid: i32)
Expand description

watch_proc is used to monitor a process and get a real-time list of all the system calls it makes.

Examples found in repository?
examples/watch_proc_example.rs (line 5)
3fn main(){
4    let pid = 1234;
5    process_read_write::watch_proc(pid);
6}