We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This code
let c1 = &time::every(1000); let c2 = &time::every(1000); let c3 = &time::every(1000); c1.lift(|_| error!("A")); c2.lift(|_| error!("B")); c3.lift(|_| error!("C")); loop{} // Don't exit function
Prints B only once
The text was updated successfully, but these errors were encountered:
See issue rust-lang/rust#4718
Sorry, something went wrong.
Workaround pushed, fixed for signal.rs, but still broken in rust
No branches or pull requests
This code
Prints B only once
The text was updated successfully, but these errors were encountered: