I am interested in going into concurrency and multi-threading in general. I have no idea about this field at all. I was wondering if someone could suggest a good book or a good online tutorial, or a killing combination of the two.

I did not find any relevant questions on SO, but with some shallow (google) search I got across this book . I would like a book which does not cover material only working on Windows, but more on the Linux side using either C or C++, and generally be as POSIX as possible.

I would appreciate your comments. Thank you for your time and I hope the question is in line with the Rules.

link|improve this question

feedback

3 Answers

up vote 8 down vote accepted

Tutorial on POSIX Threads Programming from Blaise Barney, Lawrence Livermore National Laboratory.

The tutorial begins with an introduction to concepts, motivations, and design considerations for using Pthreads. Each of the three major classes of routines in the Pthreads API are then covered: Thread Management, Mutex Variables, and Condition Variables. Example codes are used throughout to demonstrate how to use most of the Pthreads routines needed by a new Pthreads programmer. The tutorial concludes with a discussion of LLNL specifics and how to mix MPI with pthreads. A lab exercise, with numerous example codes (C Language) is also included.

They have a good intro to parallel programming as well.

This tutorial covers the very basics of parallel computing, and is intended for someone who is just becoming acquainted with the subject. It begins with a brief overview, including concepts and terminology associated with parallel computing. The topics of parallel memory architectures and programming models are then explored. These topics are followed by a discussion on a number of issues related to designing parallel programs. The tutorial concludes with several examples of how to parallelize simple serial programs.

link|improve this answer
1  
+1 for the excellent link. I was going to give that as an answer but you beat me to it. – R.. Jan 18 '11 at 18:47
feedback

IIRC, this is the book I used: Programming With POSIX Threads. It's quite good, a thorough introduction to the POSIX API and a solid reference as well. It helps if you've done some thread programming before, but it covers a lot of the basic concepts quite well. It focuses on Linux/UN*X development.

link|improve this answer
feedback

Take a look at UNIX Internals. This book is not for beginners but has a lot of interesting stuff on how it is actually work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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