Struct rustix::process::PrctlMmMap
source · #[repr(C)]pub struct PrctlMmMap {}
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 start address.
end_code: u64
Code section end address.
start_data: u64
Data section start address.
end_data: u64
Data section end address.
start_brk: u64
brk
start address.
brk: u64
brk
current address.
start_stack: u64
Stack start address.
arg_start: u64
Program command line start address.
arg_end: u64
Program command line end address.
env_start: u64
Program environment start address.
env_end: u64
Program environment end address.
auxv: *mut u64
Auxiliary vector start address.
auxv_size: u32
Auxiliary vector size.
exe_fd: u32
File descriptor of executable file that was used to create this process.
Trait Implementations§
source§impl Clone for PrctlMmMap
impl Clone for PrctlMmMap
source§fn clone(&self) -> PrctlMmMap
fn clone(&self) -> PrctlMmMap
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for PrctlMmMap
impl RefUnwindSafe for PrctlMmMap
impl !Send for PrctlMmMap
impl !Sync for PrctlMmMap
impl Unpin for PrctlMmMap
impl UnwindSafe for PrctlMmMap
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)