/Cpp-concurrency

Some C++ concurrent code written when reading "C++ concurrency in action"

Primary LanguageC++

Some concurrent code implemented when reading "C++ Concurrency in Action 2nd Edition" by Anthony Williams. Code are tested with C++17.

List of contents

  • Thread-safe list (lock-based)
  • Thread-safe queue (lock-based)
  • Thread-safe stack (lock-free)
  • Thread-safe map (lock-based)
  • experimental/async
  • ThreadPool