Struct procfs::MemoryMap[][src]

pub struct MemoryMap {
    pub address: (u64, u64),
    pub perms: String,
    pub offset: u64,
    pub dev: (i32, i32),
    pub inode: u32,
    pub pathname: MMapPath,
}

Represents an entry in a /proc/<pid>/maps file.

To construct this structure, see Process::maps().

Fields

The address space in the process that the mapping occupies.

The offset into the file/whatever

The device (major, minor)

The inode on that device

0 indicates that no inode is associated with the memory region, as would be the case with BSS (uninitialized data).

Trait Implementations

impl Debug for MemoryMap
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for MemoryMap

impl Sync for MemoryMap