X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1a64ca4c11a1eb7ba2ecd102f877ac571486a034..823c82fe7b96c09298262a9262e518a57473fb04:/include/simgrid/s4u/Mutex.hpp diff --git a/include/simgrid/s4u/Mutex.hpp b/include/simgrid/s4u/Mutex.hpp index 237479588f..87d47682a2 100644 --- a/include/simgrid/s4u/Mutex.hpp +++ b/include/simgrid/s4u/Mutex.hpp @@ -29,22 +29,25 @@ namespace s4u { * @endrst */ class XBT_PUBLIC Mutex { +#ifndef DOXYGEN friend ConditionVariable; friend kernel::activity::MutexImpl; + friend void kernel::activity::intrusive_ptr_release(kernel::activity::MutexImpl* mutex); +#endif kernel::activity::MutexImpl* const pimpl_; /* refcounting */ friend XBT_PUBLIC void intrusive_ptr_add_ref(const Mutex* mutex); friend XBT_PUBLIC void intrusive_ptr_release(const Mutex* mutex); -public: explicit Mutex(kernel::activity::MutexImpl* mutex) : pimpl_(mutex) {} - ~Mutex(); + ~Mutex() = default; #ifndef DOXYGEN Mutex(Mutex const&) = delete; // No copy constructor; Use MutexPtr instead Mutex& operator=(Mutex const&) = delete; // No direct assignment either. Use MutexPtr instead #endif +public: /** Constructs a new mutex */ static MutexPtr create(); void lock();