[pull] master from ruby:master#1179
Merged
Merged
Conversation
rb_postponed_job_trigger_for_ractor(h, running_ractor) runs a preregistered postponed job on running_ractor rather than on the caller's or the main Ractor: the handle's bit is set in a per-Ractor atomic mask and a POSTPONED_JOB interrupt is posted to the Ractor's running EC (or its main thread's EC before it starts running); whichever of the target's threads next checks interrupts drains the mask in rb_postponed_job_flush alongside the VM-global bitset. Delivery is trap-style lazy, like rb_postponed_job_trigger: * the target is not woken out of a blocking call (no unblock function); a blocked Ractor picks the job up at its next natural safepoint, * jobs targeted at a Ractor that exits before checking them are simply discarded with it, * across fork(2), jobs that targeted the forking Ractor survive into the child (it is the child's main Ractor now); jobs for any other Ractor are discarded. The function is internal (declared in vm_core.h) and exported only for ext/-test-/postponed_job for now; the first planned user is per-Ractor GC (handing a terminated Ractor's objspace over to the main Ractor by a main-targeted job). Promoting it to the public C API can be discussed separately.
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
See Commits and Changes for more details.
Created by
pull[bot] (v2.0.0-alpha.4)
Can you help keep this open source service alive? 💖 Please sponsor : )