-
Notifications
You must be signed in to change notification settings - Fork 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
timers should be Send
#1
Comments
Hi, #[derive(Debug)]
pub (crate) struct TimerState {
wake: AtomicWaker,
done: AtomicBool,
} and then simply |
Bumped into this problem. The most important part is that the Windows impl is Send, but Linux isn't, so on my dev machine it was working but when I tried to compile it on Linux suddenly it doesn't. |
Yea it seems like the right solution is to use |
test and make sure of this.
The text was updated successfully, but these errors were encountered: