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

#[repr(C)]
pub struct prctl_mm_map_t {
Show 14 fields 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,
}
Expand description

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

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.