1. Revision History
This paper is the initial revision.
2. Introduction
The proposal for concurrent queues C++ Concurrent Queues (P0260) uses an enumeration to
specify possible return states of some queue operations.
This enumeration is called
as it was originally
meant for exceptions.
However, the concurrent queue proposal doesn’t propose it’s
own exception class anymore, so the name is misleading.
3. Name Options
In initial revisons of P0260 the enumeration was called
.
But
has a specific meaning in S/R context that completely different.
Dropping the
gives us
.
To make it clear that it’s specific to concurrent queues we could also name it
.
4. Proposal 1
Rename
to
.
5. Proposal 2
Rename
to
.