Expand description
Operating system signals.
Re-exports§
pub use self::Signal::*;
Structs§
- SaFlags
- Controls the behavior of a
SigAction
- SigAction
- Action to take on receipt of a signal. Corresponds to
sigaction
. - SigSet
- Specifies a set of
Signal
s that may be blocked, waited for, etc. - SigSet
Iter - Iterator for a
SigSet
. - Signal
Iterator - Iterate through all signals defined by this operating system
Enums§
- SigHandler
- A signal handler.
- Sigmask
How - Specifies how certain functions should manipulate a signal mask
- Signal
- Types of operating system signals
Constants§
Functions§
- kill
- Send a signal to a process
- pthread_
sigmask - Manages the signal mask (set of blocked signals) for the calling thread.
- raise
- Send a signal to the current thread
- sigaction⚠
- Changes the action taken by a process on receipt of a specific signal.
- signal⚠
- Signal management (see signal(3p))
- sigprocmask
- Examine and change blocked signals.