X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0e1abd96e8dae119ad9db19d6ece8d542aa5d36b..705d7f1d9bb048c715a17cd5e726dbdbbd6b6d71:/include/simgrid/s4u/Mutex.hpp diff --git a/include/simgrid/s4u/Mutex.hpp b/include/simgrid/s4u/Mutex.hpp index 3603d18359..81263d9abc 100644 --- a/include/simgrid/s4u/Mutex.hpp +++ b/include/simgrid/s4u/Mutex.hpp @@ -23,21 +23,21 @@ class ConditionVariable; * @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), + * 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). + *