pub trait MainloopSignals: Mainloop {
    fn init_signals(&mut self) -> Result<(), PAErr> { ... }
    fn signals_done(&self) { ... }
}
Expand description

Trait with signal handling, for mainloops

Provided Methods

Initialize the UNIX signal subsystem and bind it to the specified main loop

Cleanup the signal subsystem

Implementors