[][src]Struct nc::types::prctl_mm_map_t

#[repr(C)]pub struct prctl_mm_map_t {
    pub start_code: u64,
    pub end_code: u64,
    pub start_data: u64,
    pub end_data: u64,
    pub start_brk: u64,
    pub brk: u64,
    pub start_stack: u64,
    pub arg_start: u64,
    pub arg_end: u64,
    pub env_start: u64,
    pub env_end: u64,
    pub auxv: usize,
    pub auxv_size: u32,
    pub exe_fd: u32,
}

This structure provides new memory descriptor map which mostly modifies /proc/pid/stat[m] output for a task. This mostly done in a sake of checkpoint/restore functionality.

Fields

start_code: u64

code section bounds

end_code: u64start_data: u64

data section bounds

end_data: u64start_brk: u64

heap for brk() syscall

brk: u64start_stack: u64

stack starts at

arg_start: u64

command line arguments bounds

arg_end: u64env_start: u64

environment variables bounds

env_end: u64auxv: usize

auxiliary vector

auxv_size: u32

vector size

exe_fd: u32

/proc/$pid/exe link file

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.