Skip to content

Cannot lift more than two signals at a time #2

New issue

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

Closed
14427 opened this issue Jan 27, 2013 · 2 comments
Closed

Cannot lift more than two signals at a time #2

14427 opened this issue Jan 27, 2013 · 2 comments

Comments

@14427
Copy link
Owner

14427 commented Jan 27, 2013

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

@14427
Copy link
Owner Author

14427 commented Feb 1, 2013

See issue rust-lang/rust#4718

@14427
Copy link
Owner Author

14427 commented Feb 2, 2013

Workaround pushed, fixed for signal.rs, but still broken in rust

@14427 14427 closed this as completed Feb 2, 2013
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant