Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I find good, solid documentation for the C++0x synchronization primitives? [closed]

I've seen articles on ::std::thread and ::std::forward and such, but I have seen no good articles on ::std::atomic. There is, of course, the standards proposal paper, but I haven't seen any good documentation for someone who just wanted to use the facility.

Is there any? Where can I find it?

like image 277
Omnifarious Avatar asked Feb 08 '11 20:02

Omnifarious


2 Answers

The just::thread library has decent documentation and was developed by Anthony Williams, author of C++ Concurrency in Action and maintainer of the Boost thread library.

like image 188
Fred Nurk Avatar answered Nov 07 '22 13:11

Fred Nurk


There's also the C++ Concurrency in Action book by Anthony Williams.

like image 43
Eugen Constantin Dinca Avatar answered Nov 07 '22 13:11

Eugen Constantin Dinca