2020-08-26 22:30:19 +03:00
|
|
|
mod interrupted;
|
|
|
|
|
|
2018-10-17 14:07:58 +03:00
|
|
|
#[cfg(unix)]
|
|
|
|
|
mod unix;
|
|
|
|
|
#[cfg(unix)]
|
2020-08-26 22:30:19 +03:00
|
|
|
pub use self::unix::set_handler;
|
2018-10-17 14:07:58 +03:00
|
|
|
|
|
|
|
|
#[cfg(windows)]
|
|
|
|
|
mod windows;
|
|
|
|
|
#[cfg(windows)]
|
2020-08-26 22:30:19 +03:00
|
|
|
pub use self::windows::set_handler;
|
|
|
|
|
|
|
|
|
|
pub use self::interrupted::*;
|