pub unsafe fn syscall2(
nr: Sysno,
a1: SyscallWord,
a2: SyscallWord,
) -> Result<SyscallWord, Errno>Expand description
Issues a system call with 2 arguments.
§Safety
Running a system call is inherently unsafe. It is the caller’s responsibility to ensure safety.