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

Remove the lifetime constraint from the scope OP #785

Merged
merged 1 commit into from Aug 24, 2020

Conversation

cuviper
Copy link
Member

@cuviper cuviper commented Aug 14, 2020

We already know the OP lifetime must outlive the scope call itself,
and we'll execute it synchronously, but we don't need to tie that to the
'scope lifetime. By relaxing this, we can create scopes for different
lifetimes than OP can satisfy, even fully 'static. They will still
await completion by the end of the scope call, but this can be useful
for collecting the invariant scopes from different contexts, as the new
nested tests demonstrate (adapted from @pkolaczk's code in #782).

We already know the `OP` lifetime must outlive the `scope` call itself,
and we'll execute it synchronously, but we don't need to tie that to the
`'scope` lifetime. By relaxing this, we can create scopes for different
lifetimes than `OP` can satisfy, even fully `'static`. They will still
await completion by the end of the `scope` call, but this can be useful
for collecting the invariant scopes from different contexts, as the new
nested tests demonstrate.
@nickkuk
Copy link

nickkuk commented Aug 15, 2020

Note that crossbeam's scope agrees with your changes (it doesn't need Send because closure executes on the same thread).

@cuviper
Copy link
Member Author

cuviper commented Aug 24, 2020

bors r+

@bors bors bot merged commit a0e5833 into rayon-rs:master Aug 24, 2020
@cuviper cuviper deleted the relax-scopes branch February 25, 2023 17:58
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.

None yet

2 participants