 |
C++Talk.NET C++ language newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
Mark Guest
|
Posted: Sun Aug 20, 2006 6:51 pm Post subject: Suggestion for practical book for threading? |
|
|
Hi,
I want to learn multi-threding in C++. After serching in amazon, I
still cant decided which one i should buy. Anyone have suggestion of a
book on practical threading in C++? Or is that any good website on it?
Thx a lot.
Mark
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ] |
|
| Back to top |
|
 |
Jeffrey Schwab Guest
|
Posted: Sun Aug 20, 2006 8:03 pm Post subject: Re: Suggestion for practical book for threading? |
|
|
Mark wrote:
| Quote: | I want to learn multi-threding in C++. After serching in amazon, I
still cant decided which one i should buy. Anyone have suggestion of a
book on practical threading in C++? Or is that any good website on it?
|
http://www.boost.org/doc/html/threads.html
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ] |
|
| Back to top |
|
 |
Maxim Yegorushkin Guest
|
Posted: Mon Aug 21, 2006 1:43 am Post subject: Re: Suggestion for practical book for threading? |
|
|
{ Please keep further discussion/suggestions C++-related. -mod }
Jeffrey Schwab wrote:
| Quote: | Mark wrote:
I want to learn multi-threding in C++. After serching in amazon, I
still cant decided which one i should buy. Anyone have suggestion of a
book on practical threading in C++? Or is that any good website on it?
http://www.boost.org/doc/html/threads.html
|
As boost::threads resemble POSIX threads API, it might be worthwhile to
take a look at
"Programming with POSIX Threads" by David R Butenhof
http://brian.accu.org/bookreviews/public/reviews/p/p002088.htm
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ] |
|
| Back to top |
|
 |
Mike Guest
|
Posted: Mon Aug 21, 2006 4:28 pm Post subject: Re: Suggestion for practical book for threading? |
|
|
Mark wrote:
| Quote: | Hi,
I want to learn multi-threding in C++. After serching in amazon, I
still cant decided which one i should buy. Anyone have suggestion of a
book on practical threading in C++? Or is that any good website on it?
|
The Adaptive Communications Environment (ACE) provides some nice
high-level design patterns (Reactor, Proactor, etc.) and frameworks to
develop distributed, multi-threaded applications (see
http://www.cs.wustl.edu/~schmidt/ACE.html). There are several books
that discuss this library in detail: C++ Network Programming Vols 1+2
and the The ACE Programmer's Guide.
In addition to the Boost.Thread library there is a new library, asio,
that has been accepted into Boost for asynchronous I/O that implements
some of the same ACE design patterns using more advanced, but less
portable C++ techniques (you need a good standards-conforming C++
compiler).
Mike
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ] |
|
| Back to top |
|
 |
Robert Kindred Guest
|
Posted: Mon Aug 21, 2006 8:47 pm Post subject: Re: Suggestion for practical book for threading? |
|
|
"Mike" <mhcox (AT) bluezoosoftware (DOT) com> wrote in message
news:1156143764.231754.212080 (AT) 75g2000cwc (DOT) googlegroups.com...
| Quote: | Mark wrote:
Hi,
I want to learn multi-threding in C++. After serching in amazon, I
still cant decided which one i should buy. Anyone have suggestion of a
book on practical threading in C++? Or is that any good website on it?
The Adaptive Communications Environment (ACE) provides some nice
high-level design patterns (Reactor, Proactor, etc.) and frameworks to
develop distributed, multi-threaded applications (see
http://www.cs.wustl.edu/~schmidt/ACE.html). There are several books
that discuss this library in detail: C++ Network Programming Vols 1+2
and the The ACE Programmer's Guide.
I would like to add that at a lower layer, one can find the patterns that |
ACE was built upon in Pattern-Oriented Software Architecture, Volume 2, by
Schmidt, et al. I have had good experiences with this book.
Robert Kindred
[]
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ] |
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|