Paul Colomiets

Results 454 comments of Paul Colomiets

If performance is not critical you can do the following: ``` rust # somewhere before the main loop of the emulator let trap = Trap(&[SIGINT]); loop { try!(self.step()); if let...

Just added an example https://github.com/tailhook/signal/blob/master/examples/poll_for_signal.rs Works fine when run as a command `./target/debug/examples/poll_for_signal`. I you run it using `cargo run` there are some issues with it: i.e. cargo exits before...

Sure. The signal will be "pending" until `wait()` is called.

> Agree in general but let's polish client tracing first. Any update on this issue? Is client implementation mature enough?