Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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

like image 228
Violet Giraffe Avatar asked Nov 14 '22 16:11

Violet Giraffe


1 Answers

My just::thread library provides a complete implementation of the C++11 thread library for MSVC 2005, 2008 and 2010, including std::thread and std::async, but it's not free. For a free implementation the closest you can get with MSVC is boost, but there are a few differences.

like image 131
Anthony Williams Avatar answered Dec 22 '22 09:12

Anthony Williams