Avoiding the Pitfalls of Multithreading

Multithreading can bring you great performance benefits, but if you’re not careful your program could end up doing unpredictable things. This video explains how to make your programs thread-safe by using mutexes: a mechanism that prevents threads from disrupting each others business.
Back to Top