Lines Matching full:queues
9 [section:synchronized_queues Synchronized Queues -- EXPERIMENTAL]
13 ….org/JTC1/SC22/WG21/docs/papers/2013/n3533.html [*N3533 - C++ Concurrent Queues]] C++1y proposal f…
19 Queues provide a mechanism for communicating data between components of a system.
21 … elements with other queue operations. So, concurrent pushes and pops on queues require a differen…
30 Concurrent queues are a well know mechanism for communicating data between different threads.
32 Concurrent queues have inherently copy/move semantics for the data handling operation. Reference-re…
46 [section:bounded_unbounded Bounded-Unbounded Queues]
52 [section:locking Locking/Lock-free Queues]
54 Locking queues can by nature block waiting for the queue to be non-empty or non-full.
56 …queues will have some trouble waiting for the queue to be non-empty or non-full queues. These queu…
62 …roach suffers from the flaw that threads waiting on either full or empty queues need to be woken u…
68 [section:exception Concurrent Queues Throw specification]
124 … not full (for bounded queues) and then push back `e` to the queue copying it (this could need an …
144 …ull (for bounded queues) and then push `e` to the queue moving it back in the queue (this could ne…
164 …`q` and moves the pulled element into `lve` (this could need an allocation for unbounded queues).]]
317 …`q` and moves the pulled element into `lve` (this could need an allocation for unbounded queues).]]
348 Non-blocking operations are provided only for lock based queues
430 …`q` and moves the pulled element into `lve` (this could need an allocation for unbounded queues).]]
457 Bounded queues add the following valid expressions
479 [[Remark:] [Not all queues will have a full state, and these would always return false if the funct…
502 Closed queues add the following valid expressions
538 … not full (for bounded queues) and then push back `e` to the queue copying it (this could need an …
566 …ull (for bounded queues) and then push `e` to the queue moving it back in the queue (this could ne…