briefly defer yielding the thread/gvl around syscalls#15294
Closed
jpl-coconut wants to merge 3 commits into
Closed
briefly defer yielding the thread/gvl around syscalls#15294jpl-coconut wants to merge 3 commits into
jpl-coconut wants to merge 3 commits into
Conversation
jpl-coconut
marked this pull request as draft
November 23, 2025 05:14
jpl-coconut
force-pushed
the
deferred_thread_wait_master
branch
from
December 4, 2025 06:44
0beb0ee to
48d19a7
Compare
Author
|
I think this is ready for review. I've taken the suggestion of @luke-gru and it now uses one thread per process, rather than one per ractor. There is exactly one test failing (under multiple actions). That one is I think updating the test in this case is better than trying to replicate the old behavior, but it's debatable. A simple test fix is here. |
jpl-coconut
marked this pull request as ready for review
December 4, 2025 17:01
Author
|
Closing in favor of a better approach |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This addresses Bug: 21685.
Details are in the issue. The following is a summary.
Before the fix:
After the fix:
Following brief discussion on the issue I am creating this PR to further the discussion.