Enum signalbool::Flag [] [src]

pub enum Flag {
    Interrupt,
    Restart,
}

flag controlling the restarting behavior.

Note that most functions in std ignore EINTR and continue their operations.

See manpage signal(7) for details.

Variants

Blocking syscalls will be interrupted.

Use SA_RESTART so that syscalls don't get interrupted.