Function syscall3

Source
pub unsafe fn syscall3(
    nr: usize,
    arg0: usize,
    arg1: usize,
    arg2: usize,
) -> Retval
Expand description

Invoke System Call With 3 Arguments

This invokes the system call with the specified system-call-number. The provided arguments are passed to the system call unmodified.

ยงSafety

  • System calls can have arbitrary side-effects. It is the responsibility of the caller to consider all effects of a system call and take required precautions.