#include <atomic_queue.h>
|
void | push (T t) |
|
void | pop () |
| This is not reentrant.
|
|
T | front () |
| This is not reentrant.
|
|
bool | empty () const |
| This is not reentrant.
|
|
unsigned int | size () const |
|
bool | atomicPush (T t) |
|
bool | atomicPop (const_ref item) |
|
const_ref | atomicFront () |
| Tries to obtain the front item.
|
|
T | atomicPopAny () |
|
template<typename T, unsigned int SIZE, typename const_ref = T>
class atomic_nonzero_pod_queue< T, SIZE, const_ref >
Atomic FIFO with a pre-defined size for POD-type data of non-zero values (e.g. pointers).
- See Also
- atomic_queue, atomic_pointer_queue
Definition at line 24 of file atomic_queue.h.
template<typename T, unsigned int SIZE, typename const_ref = T>
template<typename T, unsigned int SIZE, typename const_ref = T>
Tries to push an item.
- Parameters
-
- Returns
- true if succeeded.
Definition at line 65 of file atomic_queue.h.
The documentation for this class was generated from the following file: