X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9a0588c059ef10ae0f4470e21c6b226b959ea859..8937f1426cc4c3bbe77178ce3a9cdc0687263a8e:/include/simgrid/s4u/Mutex.hpp diff --git a/include/simgrid/s4u/Mutex.hpp b/include/simgrid/s4u/Mutex.hpp index e81c81555d..5ad1bbe6c9 100644 --- a/include/simgrid/s4u/Mutex.hpp +++ b/include/simgrid/s4u/Mutex.hpp @@ -12,8 +12,6 @@ namespace simgrid { namespace s4u { -class ConditionVariable; - /** @brief A classical mutex, but blocking in the simulation world * @ingroup s4u_api * @@ -25,7 +23,7 @@ class ConditionVariable; * ; - // No copy: /** You cannot create a new mutex by copying an existing one. Use MutexPtr instead */ Mutex(Mutex const&) = delete; @@ -49,19 +45,19 @@ public: Mutex& operator=(Mutex const&) = delete; /** Constructs a new mutex */ - static Ptr create(); + static MutexPtr create(); void lock(); void unlock(); bool try_lock(); +#ifndef DOXYGEN // deprecated /** @deprecated Mutex::create() */ - XBT_ATTRIB_DEPRECATED_v323("Please use Mutex::create()") static Ptr createMutex() { return create(); } + XBT_ATTRIB_DEPRECATED_v323("Please use Mutex::create()") static MutexPtr createMutex() { return create(); } +#endif }; -using MutexPtr = Mutex::Ptr; - }} // namespace simgrid::s4u #endif /* SIMGRID_S4U_MUTEX_HPP */