X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/04fa61785ae1ecb5e5233ef0cb6d24145120d95e..acd555b41f9a71f6e3ed538f00d1e84fe6d19024:/include/simgrid/s4u/Mutex.hpp diff --git a/include/simgrid/s4u/Mutex.hpp b/include/simgrid/s4u/Mutex.hpp index 0b3ebc8c59..9e8e317e72 100644 --- a/include/simgrid/s4u/Mutex.hpp +++ b/include/simgrid/s4u/Mutex.hpp @@ -20,21 +20,24 @@ namespace s4u { class ConditionVariable; /** @brief A classical mutex, but blocking in the simulation world + * @ingroup s4u_api * - * It is strictly impossible to use a real mutex (such as - * [std::mutex](http://en.cppreference.com/w/cpp/thread/mutex) - * or [pthread_mutex_t](http://pubs.opengroup.org/onlinepubs/007908775/xsh/pthread_mutex_lock.html)), + * It is strictly impossible to use a real mutex, such as + * std::mutex + * or pthread_mutex_t, * because it would block the whole simulation. * Instead, you should use the present class, that is a drop-in replacement of - * [std::mutex](http://en.cppreference.com/w/cpp/thread/mutex). + *