C ++ 11 threading API: is there a free version for MSVC 2010?

Is there a free third-party implementation of std :: thread API for use in versions of MSVC older than 11?

+5
source share
2 answers

Boost :: thread is the way to go!

0
source

My just :: thread library provides a complete implementation of the C ++ 11 thread library for MSVC 2005, 2008, and 2010, including std::threadand std::async, but it's not free. For a free implementation, the closest to MSVC may be an increase, but there are a few differences.

+1
source

All Articles