[][src]Struct libuv::handles::signal::SignalHandle

pub struct SignalHandle { /* fields omitted */ }

Signal handles implement Unix style signal handling on a per-event loop bases.

Windows notes: Reception of some signals is emulated:

  • SIGINT is normally delivered when the user presses CTRL+C. However, like on Unix, it is not generated when terminal raw mode is enabled.
  • SIGBREAK is delivered when the user pressed CTRL + BREAK.
  • SIGHUP is generated when the user closes the console window. On SIGHUP the program is given approximately 10 seconds to perform cleanup. After that Windows will unconditionally terminate it.
  • SIGWINCH is raised whenever libuv detects that the console has been resized. When a libuv app is running under a console emulator, or when a 32-bit libuv app is running on 64-bit system, SIGWINCH will be emulated. In such cases SIGWINCH signals may not always be delivered in a timely manner. For a writable TtyHandle libuv will only detect size changes when the cursor is moved. When a readable TtyHandle is used, resizing of the console buffer will be detected only if the handle is in raw mode and is being read.
  • Watchers for other signals can be successfully created, but these signals are never received. These signals are: SIGILL, SIGABRT, SIGFPE, SIGSEGV, SIGTERM and SIGKILL.
  • Calls to raise() or abort() to programmatically raise a signal are not detected by libuv; these will not trigger a signal watcher.

Unix notes

  • SIGKILL and SIGSTOP are impossible to catch.
  • Handling SIGBUS, SIGFPE, SIGILL or SIGSEGV via libuv results into undefined behavior.
  • SIGABRT will not be caught by libuv if generated by abort(), e.g. through assert().
  • On Linux SIGRT0 and SIGRT1 (signals 32 and 33) are used by the NPTL pthreads library to manage threads. Installing watchers for those signals will lead to unpredictable behavior and is strongly discouraged. Future versions of libuv may simply reject them.

Implementations

impl SignalHandle[src]

pub fn new(r#loop: &Loop) -> Result<SignalHandle>[src]

Create and initialize a new signal handle

pub fn start<CB: Into<SignalCB<'static>>>(
    &mut self,
    cb: CB,
    signum: i32
) -> Result<()>
[src]

Start the handle with the given callback, watching for the given signal.

pub fn start_oneshot<CB: Into<SignalCB<'static>>>(
    &mut self,
    cb: CB,
    signum: i32
) -> Result<()>
[src]

Same functionality as start() but the signal handler is reset the moment the signal is received.

pub fn stop(&mut self) -> Result<()>[src]

Stop the handle, the callback will no longer be called.

pub fn signum(&self) -> i32[src]

Signal being monitored by this handle.

Trait Implementations

impl Clone for SignalHandle[src]

impl Copy for SignalHandle[src]

impl From<SignalHandle> for Handle[src]

impl HandleTrait for SignalHandle[src]

impl ToHandle for SignalHandle[src]

impl TryFrom<Handle> for SignalHandle[src]

type Error = ConversionError

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.