[execution] Add global context placeholder with guards #18639
+305
−0
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.



Description
Global context template for execution, as described in design doc but simpler. Instead of atomics, implemented via
RwLockso no unsafe is needed. On execution (block), read-lock is acquired. For maintenance (between blocks), write-lock is acquired. Added a few tests for that. Note:Contextwill be populated with data and caches, with unsafe APIs which are safe through execution or maintenance guard implementations.How Has This Been Tested?
Unit tests added.
Key Areas to Review
Type of Change
Which Components or Systems Does This Change Impact?
Checklist
Note
Medium Risk
Introduces new cross-thread synchronization primitives and timing-based concurrency tests; while currently a placeholder, future consumers may rely on the lock semantics and could hit contention/starvation issues if misused.
Overview
Adds a new
global-contextMonoMove crate that introduces aGlobalContextwith a two-phase locking API: non-blocking acquisition of sharedExecutionContextread guards for parallel execution, and exclusiveMaintenanceContextwrite guards for between-block maintenance.Wires the crate into the workspace (
Cargo.tomlandCargo.lock) and adds integration tests validating concurrent execution access and mutual exclusion between execution and maintenance phases.Written by Cursor Bugbot for commit e753a18. This will update automatically on new commits. Configure here.