Crate syscall

Source
Expand description

This file is part of syscall-rs

Macros§

syscall
System call wrapper.

Structs§

SignalFd
Special file descriptor from which Signals directed to the caller can be read
SignalSet
A group of multiple different Signals

Enums§

Error
Error type
Signal
Operating system signal.
WaitStatus
A WaitStatus is the result of wait()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