X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7013392b1a0a3aed2219fa352e81826f8657fbe2..1b94b2100679d5b4355fccb6d22927efc12ca5bc:/src/s4u/s4u_Mutex.cpp diff --git a/src/s4u/s4u_Mutex.cpp b/src/s4u/s4u_Mutex.cpp index 88a271b0e5..5e0b6a7943 100644 --- a/src/s4u/s4u_Mutex.cpp +++ b/src/s4u/s4u_Mutex.cpp @@ -11,8 +11,10 @@ namespace s4u { Mutex::~Mutex() { - SIMIX_mutex_unref(pimpl_); + if (pimpl_ != nullptr) + pimpl_->unref(); } + /** @brief Blocks the calling actor until the mutex can be obtained */ void Mutex::lock() { @@ -48,12 +50,15 @@ MutexPtr Mutex::create() void intrusive_ptr_add_ref(Mutex* mutex) { xbt_assert(mutex); - SIMIX_mutex_ref(mutex->pimpl_); + if (mutex->pimpl_) + mutex->pimpl_->ref(); } void intrusive_ptr_release(Mutex* mutex) { xbt_assert(mutex); - SIMIX_mutex_unref(mutex->pimpl_); + if (mutex->pimpl_) + mutex->pimpl_->unref(); } + } // namespace s4u } // namespace simgrid