Skip to content

[LWG motion 12 2024-06] P2300R10 std::execution #7114

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
Jul 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/config.tex
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@

%% Library chapters
\newcommand{\firstlibchapter}{support}
\newcommand{\lastlibchapter}{thread}
\newcommand{\lastlibchapter}{exec}
22 changes: 21 additions & 1 deletion source/exceptions.tex
Original file line number Diff line number Diff line change
Expand Up @@ -1084,7 +1084,27 @@
\item%
when a call to a \tcode{wait()}, \tcode{wait_until()}, or \tcode{wait_for()}
function on a condition variable\iref{thread.condition.condvar,thread.condition.condvarany}
fails to meet a postcondition.
fails to meet a postcondition, or

\item%
when a callback invocation exits via an exception
when requesting stop on
a \tcode{std::stop_source} or
a \tcode{std::in\-place_stop_source}\iref{stopsource.mem,stopsource.inplace.mem},
or in the constructor of
\tcode{std::stop_callback} or
\tcode{std::inplace_stop_callback}\iref{stopcallback.cons,stopcallback.inplace.cons}
when a callback invocation exits via an exception, or

\item%
when a \tcode{run_loop} object is destroyed
that is still in the \tcode{running} state\iref{exec.run.loop}, or

\item%
when \tcode{unhandled_stopped} is called on
a \tcode{with_awaitable_senders<T>} object\iref{exec.with.awaitable.senders}
whose continuation is not a handle to a coroutine
whose promise type has an \tcode{unhandled_stopped} member function.

\end{itemize}

Expand Down
Loading
Loading