views:

165

answers:

1

I found there are also a pthread in Boost library, is it the same thing as the posix pthread?

+2  A: 

boost threads(and other stuff like mutexes/locks/condition variables) are implemented on top of pthreads where that's available - which is most *nixes.

nos