Tag: lock-free
3 posts
-
[2026] C++ Atomic | A Complete Guide to Memory Order
This is a development blog post summarizing C++ Atomic. #include <atomic> #include <thread> using namespace std;. Start now.
-
[2026] C++ Atomic Operations | Atomic Operations Guide
C++ std::atomic and how to prevent data races in multithreads using atomic operations. Explains the advantages over mutexes and practical code patterns.
-
[2026] C++ Lock-Free Programming: CAS, ABA, Memory Order, High-Performance Queues [#34-3]
Complete guide to lock-free programming in C++: replace mutex bottlenecks with atomics and lock-free algorithms. Covers CAS loops, memory_order, ABA haz...