X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/018bdce8a96722fce641788226dd4bce6c03203c..705d7f1d9bb048c715a17cd5e726dbdbbd6b6d71:/include/simgrid/s4u/Mutex.hpp diff --git a/include/simgrid/s4u/Mutex.hpp b/include/simgrid/s4u/Mutex.hpp index 93db75ea3f..81263d9abc 100644 --- a/include/simgrid/s4u/Mutex.hpp +++ b/include/simgrid/s4u/Mutex.hpp @@ -20,24 +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). + *