ASV
ASV

Reputation: 85

C++0X Standard in support of Multi-threaded Programs

C++ Standards committe is to publish the new standards for the language we all love so much in 2010 and the biggest support that is being provided, is for multi-threaded applications.... this sounds exciting .... any more inputs on this????

Upvotes: 0

Views: 204

Answers (3)

Anthony Williams
Anthony Williams

Reputation: 68641

Prasoon already linked to my article on Devx.com, and Terry linked to my implementation of the C++0x thread library.

You might also be interested in the series of posts on my blog about multithreading in C++0x, or in my book C++ Concurrency in Action where I go into greater detail about the details of multithreading with C++0x.

Upvotes: 1

Terry Mahaffey
Terry Mahaffey

Reputation: 11991

For C++0x threads, check out http://www.stdthread.co.uk/. It's a complete implementation of the C++0x threading libraries, written by the guy who wrote a lot of the proposals that made it into the standard.

Upvotes: 2

phoebus
phoebus

Reputation: 14941

If you don't have a specific question regarding the new standards, I recommend doing some Wikipedia/Google reading. Also, check out these c++0x StackOverflow questions.

Upvotes: 2

Related Questions