1//! Signal monitor 2 3#[cfg(unix)] 4#[path = "unix.rs"] 5mod imp; 6 7#[cfg(windows)] 8#[path = "windows.rs"] 9mod imp; 10 11#[cfg(not(any(windows, unix)))] 12#[path = "other.rs"] 13mod imp; 14 15pub use self::imp::create_signal_monitor;