ISyscall

Trait ISyscall 

Source
pub trait ISyscall {
    // Required method
    fn syscall(service: u8, arg0: usize, arg1: usize, arg2: usize) -> usize;
}
Expand description

System call.

Required Methods§

Source

fn syscall(service: u8, arg0: usize, arg1: usize, arg2: usize) -> usize

A system call with a service ID and 3 arguments.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§