I haven't read the book, but if you're not clear about concurrency, then the first thing to do is read about, use and understand one multi-threaded system.
Then do the same for another system, and take careful note of the differences from the one you already know. When you discover differences, start to read around to see how lots of different systems handle that aspect of concurrency.
If you're currently working on a multi-threaded program, then the first system you study should be the system you're primarily working on, because until you understand that system's concurrency model, you're probably breaking things and/or programming by copy-and-paste of existing code. So that's likely to be Windows, pthreads, Boost, TBB, or something else that already exists. C++11 could be a strong candidate for the second system, though.
Otherwise, I don't think it makes too much difference which one you study first. OK C++11 has the tiny disadvantage that it doesn't exist yet except as a PDF -- you'll have to install some compiler version that's still in rapid development, and maybe use Boost threads instead of std::thread for the time being, and maybe some of the code examples in the book won't compile, and you'll have to work around missing features. So don't try out experiments from the book in your work place on production code (I mean, you wouldn't anyway, right?).
To be honest, never mind C++, learning the Java concurrency model could still be a reasonable start on the path towards understanding concurrency. Or Go: that has some very nice abstractions, it will take all of half a day to get the gist of it, and it will show you how you should want concurrent programs to work, assuming no ugly complications force you to do otherwise. Sure, you're not going to use all that knowledge from Java, Go or C++11 immediately in your professional C++ work, but it might still be worth having.
export. – James Kanze Aug 30 '12 at 8:22