proc-maps 0.4.0

Helper crate for getting virtual memory maps from processes
Documentation
1
2
3
4
5
6
7
8
// This test program is used in the tests in src/lib.rs
use std::io::{self, Read};

fn main() {
    // Wait to exit until stdin is closed.
    let mut buf = vec![];
    io::stdin().read_to_end(&mut buf).unwrap();
}