-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Fix sending/try_recv on channels from off the runtime #12397
Conversation
r=me with fixes (last one optional) |
(Would it be possible/reasonable to support non-blocking recieves off the runtime too?) |
I believe it is indeed reasonable! Updated commit/PR description as well |
@@ -521,12 +521,13 @@ impl<T: Send> Port<T> { | |||
pub fn try_recv(&self) -> TryRecvResult<T> { | |||
// If a thread is spinning in try_recv, we should take the opportunity | |||
// to reschedule things occasionally. See notes above in scheduling on | |||
// sends for why this doesn't always hit TLS. | |||
// sends for why this doesn't always hit TLS, and also for why this uses | |||
// `try_take` instead of `take`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
E-needstest
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oops, thanks! I've added one.
The fairness yield mistakenly called `Local::take()` which meant that it would only work if a local task was available. In theory sending on a channel (or calling try_recv) requires no runtime because it never blocks, so there's no reason it shouldn't support such a use case. Closes rust-lang#12391
The fairness yield mistakenly called `Local::take()` which meant that it would only work if a local task was available. In theory sending on a channel (or calling try_recv) requires no runtime because it never blocks, so there's no reason it shouldn't support such a use case. Closes #12391
The fairness yield mistakenly called
Local::take()
which meant that it wouldonly work if a local task was available. In theory sending on a channel (or calling try_recv) requires
no runtime because it never blocks, so there's no reason it shouldn't support
such a use case.
Closes #12391