Why should I prefer one or another in practice? What are technical differences except that std::thread is a class?
closed as not constructive by Łukasz Niemier, skolima, Jon B, Rafał Rawicki, ChrisF♦ Oct 30 '12 at 12:27
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
If you want to run code on many platforms, go for Posix Threads. They are available almost everywhere and are quite mature. OTOH if you only use Linux/gcc The C++11 A good replacement is |
|||||||||||||||
|
|
As mentioned by @hirshhornsalz in the comments below and related answer http://stackoverflow.com/a/13135425/1158895, |
|||||||||||||||||
|
|
The I think the big difference between the two is abstraction. |
|||||||
|
std::async– bamboon Oct 30 '12 at 9:27std::threaddoes – hirschhornsalz Oct 30 '12 at 10:05std::threadorpthreadsdon't. – bamboon Oct 30 '12 at 10:11