There's a great example in [Structured Concurrent Programming With Operating Systems Applications][1] (as I recall) [1]: http://www.amazon.com/Structured-Concurrent-Programming-Applications-Addison-Wesley/dp/0201029375 In the impoverished country of Bezerkistan, two lines merge onto a single track in a tunnel. There have been collisions and the ruling junta needs a solution. The issue is that it's mountainous and the engineers are blind. There's very little advance warning of two trains about to collide in the tunnel. Here's the plan. 1. Put a big bowl at the juncture. 2. Give each engineer a little brass monkey. When you're about to enter the tunnel, you stop your train. You pat around in the bowl to see if a brass monkey is in the bowl. If there's a monkey, someone else is using the tunnel, so you have to wait until their train is entirely in the tunnel, at which time the conductor gets out of the caboose and grabs the monkey from the bowl. If there's no monkey, no one else is using the tunnel. So, you can grab your monkey from the engine compartment, put it in the bowl and drive through the tunnel, knowing you have acquired exclusive access to the track. Of course, you stop briefly to allow the conductor to retrieve the brass monkey. Guess what? Collision. Why? ---- In a written document, you can explain how the race condition leads to an accident. In a presentation, you can coach the audience through reasoning about concurrency and locking.