You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We currently store a cancellation token inside a Waker, and it depends on horrible pointer operations (actually there were many segfaults during implementation).
We can implement task-local storage through thread-locals like tokio-rs/tokio#2126, and it's much safer.
The text was updated successfully, but these errors were encountered:
We currently store a cancellation token inside a Waker, and it depends on horrible pointer operations (actually there were many segfaults during implementation).
We can implement task-local storage through thread-locals like tokio-rs/tokio#2126, and it's much safer.
The text was updated successfully, but these errors were encountered: