Book Image

Concurrency with Modern C++

By : Rainer Grimm
Book Image

Concurrency with Modern C++

By: Rainer Grimm

Overview of this book

C++11 is the first C++ standard that deals with concurrency. The story goes on with C++17 and will continue with C++20/23. Concurrency with Modern C++ is a practical guide that gets you to grips with concurrent programming in Modern C++. Starting with the C++ memory model and using many ready-to-run code examples, the book covers everything you need to improve your C++ multithreading skills. You'll gain insight into different design patterns. You'll also uncover the general consideration you have to keep in mind while designing a concurrent data structure. The final chapter in the book talks extensively about the common pitfalls of concurrent programming and ways to overcome these hurdles. By the end of the book, you'll have the skills to build your own concurrent programs and enhance your knowledge base.
Table of Contents (19 chapters)
Free Chapter
1
Reader Testimonials
19
Index

Blocking Issues

To make my point clear, you have to use a condition variable in combination with a predicate. If you don’t, your program may become a victim of a spurious wakeup or lost wakeup.

If you use a condition variable without a predicate, the notifying thread may send its notification before the waiting thread is waiting. Therefore, the waiting thread waits forever. This phenomenon is called a lost wakeup.

Here is the program.

Blocking condition variables
 1 // conditionVariableBlock.cpp
 2 
 3 #include <iostream>
 4 #include <condition_variable>
 5 #include <mutex>
 6 #include <thread>
 7 
 8 std::mutex mutex_;
 9 std::condition_variable condVar;
10 
11 bool dataReady;
12 
13 
14 void waitingForWork(){
15 
16     std::cout << "Worker: Waiting for work." << std::endl;
17 
18     std::unique_lock<std::mutex> lck(mutex_);
19     condVar.wait(lck);                          
20     // do the work
21     std::cout &lt...