vote up 2 vote down star
1

Have had to write my first "proper" multithreaded coded recently, and realised just how little I knew about how "imperative-style" (ie, concurrency models used by C++/C#/Java, and the like) concurrent programming techniques.

What resources are there (both books and online tutorials, etc) in order to learn more about this area of coding-fu?

NB: I'm not asking about concurrency models that are arguably better (Erlang's message passing, or Clojure's STM), just paradigms used in imperative languages.

flag

3 Answers

vote up 2 vote down

Java Concurrency in Practice is one of the most approachable and thorough overviews of this topic, especially if you are using Java (although I think it's useful even if you're not).

link|flag
vote up 5 vote down

Patterns for Parallel Porgramming is a good general book on concurrent programming techniques. It uses Java threads, OpenMP in C and MPI in C for the examples.

Pretty much any decent book on multithreaded programming in any of the languages you mention should cover the general principles. I'm covering this ground in C++ Concurrency in Action, for example.

link|flag
vote up 3 vote down

Doug Lea's Concurrent Programming in Java is an excellent book on the topic (though it is of course Java-specific).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.