X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f23b0fb864cb60978c1fcfd48d50f62dd054fe31..5eeb3c843b60e9ba5e1a952ffe83df2a4d8f5fa0:/include/simgrid/s4u/Mutex.hpp diff --git a/include/simgrid/s4u/Mutex.hpp b/include/simgrid/s4u/Mutex.hpp index b30de03c12..ae785f4841 100644 --- a/include/simgrid/s4u/Mutex.hpp +++ b/include/simgrid/s4u/Mutex.hpp @@ -29,8 +29,10 @@ class ConditionVariable; * */ class XBT_PUBLIC Mutex { +#ifndef DOXYGEN friend ConditionVariable; friend simgrid::kernel::activity::MutexImpl; +#endif simgrid::kernel::activity::MutexImpl* pimpl_; explicit Mutex(simgrid::kernel::activity::MutexImpl* mutex) : pimpl_(mutex) {} @@ -55,6 +57,7 @@ public: bool try_lock(); // deprecated + /** @deprecated Mutex::create() */ XBT_ATTRIB_DEPRECATED_v323("Please use Mutex::create()") static Ptr createMutex() { return create(); } };