From: Martin Quinson Date: Fri, 9 Jun 2017 13:17:08 +0000 (+0200) Subject: more doxygen fixes X-Git-Tag: v3.16~127 X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/a3dc65af4638c81b13d4c46f3cda4a267da7f618 more doxygen fixes --- diff --git a/include/simgrid/s4u/Mutex.hpp b/include/simgrid/s4u/Mutex.hpp index 0d1f2277a0..9e8e317e72 100644 --- a/include/simgrid/s4u/Mutex.hpp +++ b/include/simgrid/s4u/Mutex.hpp @@ -23,13 +23,13 @@ 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). + *