Function syscall0

Source
pub unsafe fn syscall0(nr: usize) -> Retval
Expand description

Invoke System Call With 0 Arguments

This invokes the system call with the specified system-call-number. No arguments are passed to the system call.

ยง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.