tags:

views:

74

answers:

3

Hi All,

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???? ...

Thanks in advance....

+2  A: 

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.

phoebus
Thank you Phoebus ... but the idea was to start a kind of a discussion wherein we all could share common knowledge at one place rather going through individual questions, which are more specific rather than generic towards the idea of C++0X standards..
ASV
I recommend at least marking this "community wiki" then, just realize it's possible it may be closed as "not a real question", as we stick pretty heavily to the Q-A format around here.
phoebus
Thank you Phoebus.. that helps ..
ASV
+2  A: 

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.

Terry Mahaffey
+1  A: 

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.

Anthony Williams