C++11 std::thread vs Posix threads
If you want to run code on many platforms, go for Posix Threads. They are available almost everywhere and are quite mature. On the other hand if you only use Linux/gcc std::thread is perfectly fine – it has a higher abstraction level, a really good interface and plays nicely with other C++11 classes. The C++11 … Read more