pub unsafe fn syscall2(nr: usize, arg0: usize, arg1: usize) -> Retval
Expand description
Invoke System Call With 2 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.