proc-maps 0.1.8

Helper crate for getting virtual memory maps from processes
Documentation
1
2
3
4
5
6
7
8
/// These values are not exposed via libc, yet.
/// Defined in FreeBSD source: /sys/vm/vm.h

use libc::int32_t;

pub const VM_PROT_READ: int32_t = 0x01;
pub const VM_PROT_WRITE: int32_t = 0x02;
pub const VM_PROT_EXECUTE: int32_t = 0x04;