Atomicity

This lesson discusses the concept of atomic operations and how that affects multithreaded programs.

We'll cover the following...

Atomicity

We have learned in the introductory chapters that an increment statement such as var++ isn't atomic. In fact, it translates into several machine instructions. We'll dive a little deeper into the notion of atomicity in this section.

A statement ...