Expand description
This file is part of syscall-rs
Macros§
- syscall
- System call wrapper.
Structs§
- Signal
Fd - Special file descriptor from which
Signals directed to the caller can be read - Signal
Set - A group of multiple different
Signals
Enums§
- Error
- Error type
- Signal
- Operating system signal.
- Wait
Status - A
WaitStatusis the result ofwait()ing for a child process
Functions§
- signal_
block - Add the signals in
setto the current process signal mask and return the previous process signal mask. - signal_
restore - Set the process signal mask to the signals in
setand 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