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

Fix sending/try_recv on channels from off the runtime #12397

Merged
merged 1 commit into from
Feb 20, 2014

Conversation

alexcrichton
Copy link
Member

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

@emberian
Copy link
Member

r=me with fixes (last one optional)

@huonw
Copy link
Member

huonw commented Feb 19, 2014

(Would it be possible/reasonable to support non-blocking recieves off the runtime too?)

@alexcrichton
Copy link
Member Author

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`.
Copy link
Member

Choose a reason for hiding this comment

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

E-needstest

Copy link
Member Author

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
bors added a commit that referenced this pull request Feb 20, 2014
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
@bors bors closed this Feb 20, 2014
@bors bors merged commit 765a4e9 into rust-lang:master Feb 20, 2014
@alexcrichton alexcrichton deleted the send-off-the-runtime branch February 20, 2014 17:13
bors added a commit to rust-lang-ci/rust that referenced this pull request Jul 25, 2022
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

Successfully merging this pull request may close these issues.

Using Chan from a thread created from a c library crashes after sometime
4 participants