From a3dc65af4638c81b13d4c46f3cda4a267da7f618 Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Fri, 9 Jun 2017 15:17:08 +0200 Subject: [PATCH] more doxygen fixes --- include/simgrid/s4u/Mutex.hpp | 8 ++++---- src/surf/cpu_cas01.cpp | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) 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). + *