Function pause
pub fn pause()
Available on crate feature
dep_rustix
only.Expand description
pause()
The POSIX pause
interface returns an error code, but the only thing
pause
does is sleep until interrupted by a signal, so it always
returns the same thing with the same error code, so in rustix, the
return value is omitted.