Here
Concurrency doesn't have many pitfalls.
Synchronizing access to shared data, however, is a quiz different story.
Here are some questions anyone writing shared-data synchronization code should be able to give your fellow developersanswer:
The problem
What is that threading cache coherency?What is a very memory barrier?"Shared everything" concurrency is a leaky abstraction. Most languages make it very easy to create threads so "concurrency" isn't really , one of the problemleakiest if you ask me. You basically To get it right, you need to understand details of your VM (if a) your using one), Virtual Machine b) your compiler and c) your hardware / assembly instruction set - different things happen if you also have a single proc, multi-core, mulit-proc.
The issue is that most developers choose to share data between threads and that is where the threading abstraction completely breaks down at multiple levels.
At a language level, things like "i++" which seem to be a single "statement" are actually multiple assembly language operations which can be interleaved between threads. Also, the compiler can choose to reorder or ignore statements since the compiler doesn't really take into account the fact that you have mulitple threads.
At a hardware level, you have things like read/write reordering and cache coherency.
Finally, you need throw in some graph theory to understand deadlock's and creating synchronization higherarchiesget locking hierarchies correct.
Basically, its very easy to create threads
My suggestion, its very difficult to create a reliable system using a shared memory model. I highly reccomend you use a share-nothing shared nothing, message passing approach if you canmodel.
Sorry if I seem alarmistIf your going to teach about shared-data synchronization, but I have just seen such teach it like a tremendous amount of time wasted on data synchronization issues parent would teach their children about drugs - it tends to introduce really nasty, hard to find bugs.as a purely cautionary tale :)