Subj : Re: C++ and multithreading To : comp.programming.threads From : Maciej Sobczak Date : Mon Sep 12 2005 03:04 pm Hi Alex, Alex Vinokur wrote: > Any references (sites) to multithreading in C++ with examples? If you are interested in *using* what is already done then this can be of interest to you: http://www.boost.org/doc/html/threads.html (The full doc can seem dense, but worth reading anyway.) Note also that a lot of C++ code successfully uses plain threading facilities from the underlying operating system, with POSIX threads (pthreads) being standard in the Linux world and even fairly portable elsewhere. For this, use any C reference you have and "Programming with POSIX threads" book as THE resource on the subject. -- Maciej Sobczak : http://www.msobczak.com/ Programming : http://www.msobczak.com/prog/ .