Expand description
This file is part of syscall-rs
Macros§
- syscall
- System call wrapper.
Structs§
- Signal
Fd - Special file descriptor from which
Signal
s directed to the caller can be read - Signal
Set - A group of multiple different
Signal
s
Enums§
- Error
- Error type
- Signal
- Operating system signal.
- Wait
Status - A
WaitStatus
is the result ofwait()
ing for a child process
Functions§
- signal_
block - Add the signals in
set
to the current process signal mask and return the previous process signal mask. - signal_
restore - Set the process signal mask to the signals in
set
and return the previous process signal mask. - wait
- Wait for one of the children of the calling process to terminate and
return a
WaitStatus
. Note that is function will block until a child termination status becomes available.
Type Aliases§
- Result
- Result type