Race Conditions

This lesson gives an overview of race condition problems that might occur during the implementation of concurrency in C++.

We'll cover the following...

A race condition is a situation in which the result of an operation depends on the interleaving of certain individual operations.

Race conditions are quite difficult to spot; It depends on the interleaving of the threads whether they occur. That means the number ...