Skip to main content

Syscall

Enum Syscall 

Source
pub enum Syscall {
    Yield {
        yield_type: YieldVariant,
    },
    Subscribe {
        driver_number: usize,
        subdriver_number: usize,
        upcall_ptr: CapabilityPtr,
        appdata: MachineRegister,
    },
    Command {
        driver_number: usize,
        subdriver_number: usize,
        arg0: usize,
        arg1: usize,
    },
    ReadWriteAllow {
        driver_number: usize,
        subdriver_number: usize,
        allow_address: *mut u8,
        allow_size: usize,
    },
    UserspaceReadableAllow {
        driver_number: usize,
        subdriver_number: usize,
        allow_address: *mut u8,
        allow_size: usize,
    },
    ReadOnlyAllow {
        driver_number: usize,
        subdriver_number: usize,
        allow_address: *const u8,
        allow_size: usize,
    },
    Memop {
        operand: usize,
        arg0: usize,
    },
    Exit {
        which: usize,
        completion_code: usize,
    },
}
Expand description

Decoded system calls as defined in TRD104.

Variants§

§

Yield

Structure representing an invocation of the SyscallClass::Yield system call class.

Fields

§yield_type: YieldVariant

The yield variant.

§

Subscribe

Structure representing an invocation of the Subscribe system call class.

Fields

§driver_number: usize

The driver identifier.

§subdriver_number: usize

The subscribe identifier.

§upcall_ptr: CapabilityPtr

Upcall pointer to the upcall function.

§appdata: MachineRegister

Userspace application data.

§

Command

Structure representing an invocation of the Command system call class.

Fields

§driver_number: usize

The driver identifier.

§subdriver_number: usize

The command identifier.

§arg0: usize

Value passed to the Command implementation.

§arg1: usize

Value passed to the Command implementation.

§

ReadWriteAllow

Structure representing an invocation of the ReadWriteAllow system call class.

Fields

§driver_number: usize

The driver identifier.

§subdriver_number: usize

The buffer identifier.

§allow_address: *mut u8

The address where the buffer starts.

§allow_size: usize

The size of the buffer in bytes.

§

UserspaceReadableAllow

Structure representing an invocation of the UserspaceReadableAllow system call class that allows shared kernel and app access.

Fields

§driver_number: usize

The driver identifier.

§subdriver_number: usize

The buffer identifier.

§allow_address: *mut u8

The address where the buffer starts.

§allow_size: usize

The size of the buffer in bytes.

§

ReadOnlyAllow

Structure representing an invocation of the ReadOnlyAllow system call class.

Fields

§driver_number: usize

The driver identifier.

§subdriver_number: usize

The buffer identifier.

§allow_address: *const u8

The address where the buffer starts.

§allow_size: usize

The size of the buffer in bytes.

§

Memop

Structure representing an invocation of the Memop system call class.

Fields

§operand: usize

The operation.

§arg0: usize

The operation argument.

§

Exit

Structure representing an invocation of the Exit system call class.

Fields

§which: usize

The exit identifier.

§completion_code: usize

The completion code passed into the kernel.

Implementations§

Source§

impl Syscall

Source

pub fn driver_number(&self) -> Option<usize>

Get the driver_number for the syscall classes that use driver numbers.

Source

pub fn subdriver_number(&self) -> Option<usize>

Get the subdriver_number for the syscall classes that use sub driver numbers.

Trait Implementations§

Source§

impl Clone for Syscall

Source§

fn clone(&self) -> Syscall

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for Syscall

Source§

impl Debug for Syscall

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for Syscall

Source§

fn eq(&self, other: &Syscall) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for Syscall

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.