pub struct ProcessSizes {
pub grant_pointers: usize,
pub upcall_list: usize,
pub process_control_block: usize,
}
Expand description
Collection of process state related to the size in memory of various process structures.
Fields§
§grant_pointers: usize
The number of bytes used for the grant pointer table.
upcall_list: usize
The number of bytes used for the pending upcall queue.
process_control_block: usize
The number of bytes used for the process control block (i.e. the
ProcessX
struct).
Auto Trait Implementations§
impl Freeze for ProcessSizes
impl RefUnwindSafe for ProcessSizes
impl Send for ProcessSizes
impl Sync for ProcessSizes
impl Unpin for ProcessSizes
impl UnwindSafe for ProcessSizes
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