Enum twizzler_runtime_api::AuxEntry
source · #[repr(C)]pub enum AuxEntry {
Null,
ProgramHeaders(u64, usize),
Environment(u64),
Arguments(usize, u64),
ExecId(ObjID),
RuntimeInfo(usize, u64),
}
Expand description
Auxillary information provided to a new program on runtime entry.
Variants§
Null
Ends the aux array.
ProgramHeaders(u64, usize)
A pointer to this program’s program headers, and the number of them. See the ELF specification for more info.
Environment(u64)
A pointer to the env var array.
Arguments(usize, u64)
A pointer to the arguments array.
ExecId(ObjID)
The object ID of the executable.
RuntimeInfo(usize, u64)
Initial runtime information. The value is runtime-specific.
Trait Implementations§
source§impl PartialEq<AuxEntry> for AuxEntry
impl PartialEq<AuxEntry> for AuxEntry
impl Copy for AuxEntry
impl Eq for AuxEntry
impl StructuralEq for AuxEntry
impl StructuralPartialEq for AuxEntry
Auto Trait Implementations§
impl RefUnwindSafe for AuxEntry
impl Send for AuxEntry
impl Sync for AuxEntry
impl Unpin for AuxEntry
impl UnwindSafe for AuxEntry
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