Challenging Issues in C++
This lesson is a small guide to help you study the challenging issues that we face in concurrent programming.
We'll cover the following...
Writing concurrent programs is inherently complicated; this is particularly true if you only use C++11 and C++14 features. Therefore, I will describe in detail the most challenging issues. My hope is that if I dedicate a whole chapter to the challenges of concurrent programming, you will become more aware of the pitfalls. I will write about challenges such as blocking issues ...