From 7a7dde738d2d6eb87ef018606ec471fe284779a6 Mon Sep 17 00:00:00 2001 From: Gordon Brown Date: Thu, 30 May 2024 15:51:08 +0100 Subject: [PATCH] Clarify wording of event::wait_and_throw() Tweak the wording of event::wait_and_throw() to allow an implementation to throw asynchornous errors unrelated to the queue/context used to enqueue the commands for which the event is waiting on. --- adoc/chapters/programming_interface.adoc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/adoc/chapters/programming_interface.adoc b/adoc/chapters/programming_interface.adoc index 3b154813..a428065e 100644 --- a/adoc/chapters/programming_interface.adoc +++ b/adoc/chapters/programming_interface.adoc @@ -3835,10 +3835,10 @@ void wait_and_throw() a@ Blocks until all commands associated with this event and any dependent events have completed. -Any uncomsumed <> held by queues (or their -associated contexts) which were used to enqueue commands associated with this -event and any dependent events, are passed to the approriate <> -as described in <>. +At least all uncomsumed <> held by queues (or +their associated contexts) which were used to enqueue commands associated with +this event and any dependent events, are passed to the approriate +<> as described in <>. [NOTE] ====