Struct nix::sys::signal::SigSet [] [src]

pub struct SigSet { /* fields omitted */ }

Methods

impl SigSet
[src]

Gets the currently blocked (masked) set of signals for the calling thread.

Sets the set of signals as the signal mask for the calling thread.

Adds the set of signals to the signal mask for the calling thread.

Removes the set of signals from the signal mask for the calling thread.

Sets the set of signals as the signal mask, and returns the old mask.

Suspends execution of the calling thread until one of the signals in the signal mask becomes pending, and returns the accepted signal.

Trait Implementations

impl Clone for SigSet
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for SigSet
[src]

impl AsRef<sigset_t> for SigSet
[src]

Performs the conversion.