Thread System 0.3.1
High-performance C++20 thread pool with work stealing and DAG scheduling
Loading...
Searching...
No Matches
sync_primitives.h File Reference
#include <mutex>
#include <condition_variable>
#include <atomic>
#include <chrono>
#include <memory>
Include dependency graph for sync_primitives.h:

Go to the source code of this file.

Classes

class  kcenon::thread::sync::scoped_lock_guard< Mutex >
 RAII-based scoped lock guard with timeout support. More...
 
class  kcenon::thread::sync::condition_variable_wrapper
 Enhanced condition variable wrapper with timeout and predicate support. More...
 
class  kcenon::thread::sync::atomic_flag_wrapper
 Enhanced atomic flag with additional operations. More...
 
class  kcenon::thread::sync::shared_mutex_wrapper
 Shared mutex wrapper with reader-writer lock semantics. More...
 

Namespaces

namespace  kcenon
 
namespace  kcenon::thread
 Core threading foundation of the thread system library.
 
namespace  kcenon::thread::sync
 

Typedefs

using kcenon::thread::sync::unique_lock = std::unique_lock<std::mutex>
 
using kcenon::thread::sync::shared_lock = std::shared_lock<shared_mutex_wrapper>
 
using kcenon::thread::sync::scoped_mutex_lock = scoped_lock_guard<std::mutex>
 
using kcenon::thread::sync::scoped_shared_mutex_lock = scoped_lock_guard<shared_mutex_wrapper>