|
TEC
A lightweight C++ library enabling safe, efficient execution in multithreaded and concurrent systems.
|
Thread-safe queue implementation. More...
#include <cstddef>#include <queue>#include <mutex>#include <condition_variable>#include "tec/tec_def.hpp"Go to the source code of this file.
Classes | |
| class | tec::SafeQueue< T > |
| A thread-safe queue implementation for storing and retrieving elements of type T. More... | |
Thread-safe queue implementation.
This file defines a thread-safe queue class using standard library synchronization primitives for use in multi-threaded environments.