diff --git a/src/platform.rs b/src/platform.rs index de1db44062..7548625976 100644 --- a/src/platform.rs +++ b/src/platform.rs @@ -47,8 +47,8 @@ impl PlatformInterface for Platform { fn install_signal_handler(handler: T) -> RunResult<'static> { thread::spawn(move || { + // todo: handle errors? for signal in Signals::new().unwrap() { - // todo: handle error? handler(signal.unwrap()); } });