diff --git a/std_execution.bs b/std_execution.bs index e355a8ff4..8da401f0b 100644 --- a/std_execution.bs +++ b/std_execution.bs @@ -4423,7 +4423,7 @@ from the operation before the operation completes. run-loop-opstate-base* run_loop::pop_front(); - 1. Effects: Waits until one of the following conditions is `true`: + 1. Effects: Blocks ([defns.block]) until one of the following conditions is `true`: * count is `0` and state is finishing, in which case `pop_front` returns `nullptr`; or @@ -4467,6 +4467,8 @@ from the operation before the operation completes. 2. Synchronization: This operation synchronizes with all `pop_front` operations on this object. + 3. Remarks: If the thread of execution calling `run()` guarantees concurrent or parallel forward progress, then it guarantees parallel forward progress until `run()` returns; otherwise, it guarantees weakly parallel forward progress. + ## Coroutine utilities [execution.coro_utils] ## {#spec-execution.coro_utils} ### `execution::as_awaitable` [execution.coro_utils.as_awaitable] ### {#spec-execution.coro_utils.as_awaitable}