Skip to content
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

Avoid once_cell in static wakers #2332

Merged
merged 2 commits into from Feb 6, 2021
Merged

Avoid once_cell in static wakers #2332

merged 2 commits into from Feb 6, 2021

Conversation

SabrinaJewson
Copy link
Contributor

Wakers are #[repr(transparent)] over their inner RawWakers. Therefore, instead of using a once_cell to lazily initialize a Waker with Waker::from_raw, we can instead simply store a static RawWaker and then use pointer casts to obtain a Waker. This also removes the once_cell dependency.

Copy link
Member

@taiki-e taiki-e left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-task Area: futures::task
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants