The C++ standard library offers std::mutex (lock, unlock, try_lock) functionality, that can work within a multi-threaded environment.
Also I have heard talk about wrapper libraries (e.g. Boost::mutex) that provide, from what I can see, the same functionality (lock, unlock, try_lock).
My question is, what is the advantage of using such wrapper libraries over the standard one?
mutex, like that ofunordered_map, was the basis for the integration in the Standard. So you could say thatstd::mutexis a refinement ofboost::mutex. – Matthieu M. Aug 26 '12 at 15:20