Function syscall3

Source
pub unsafe fn syscall3(
    nr: Sysno,
    a1: SyscallWord,
    a2: SyscallWord,
    a3: SyscallWord,
) -> Result<SyscallWord, Errno>
Expand description

Issues a system call with 3 arguments.

§Safety

Running a system call is inherently unsafe. It is the caller’s responsibility to ensure safety.