X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/96cedde3cdbc0b8ffc3f096a1b65d021b0226f99..2cdb13351fe9ef4d8b550c66cbbb5d70d7d9f30c:/src/kernel/activity/MutexImpl.cpp diff --git a/src/kernel/activity/MutexImpl.cpp b/src/kernel/activity/MutexImpl.cpp index cc82ce65f2..624c80b3c3 100644 --- a/src/kernel/activity/MutexImpl.cpp +++ b/src/kernel/activity/MutexImpl.cpp @@ -5,7 +5,6 @@ #include "src/kernel/activity/MutexImpl.hpp" #include "src/kernel/activity/SynchroRaw.hpp" -#include "src/simix/smx_synchro_private.hpp" XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_mutex, simix_synchro, "Mutex kernel-space implementation"); @@ -29,12 +28,12 @@ void MutexImpl::lock(smx_actor_t issuer) { XBT_IN("(%p; %p)", this, issuer); /* FIXME: check where to validate the arguments */ - smx_activity_t synchro = nullptr; + RawImplPtr synchro = nullptr; if (this->locked) { /* FIXME: check if the host is active ? */ /* Somebody using the mutex, use a synchronization to get host failures */ - synchro = SIMIX_synchro_wait(issuer->host_, -1); + synchro = RawImplPtr(new RawImpl())->start(issuer->get_host(), -1); synchro->simcalls_.push_back(&issuer->simcall); issuer->waiting_synchro = synchro; this->sleeping.push_back(*issuer); @@ -81,7 +80,7 @@ void MutexImpl::unlock(smx_actor_t issuer) /* If the mutex is not owned by the issuer, that's not good */ if (issuer != this->owner) THROWF(mismatch_error, 0, "Cannot release that mutex: it was locked by %s (pid:%ld), not by you.", - this->owner->get_cname(), this->owner->pid_); + this->owner->get_cname(), this->owner->get_pid()); if (not this->sleeping.empty()) { /*process to wake up */ @@ -97,25 +96,23 @@ void MutexImpl::unlock(smx_actor_t issuer) } XBT_OUT(); } -} -} -} - /** Increase the refcount for this mutex */ -smx_mutex_t SIMIX_mutex_ref(smx_mutex_t mutex) +MutexImpl* MutexImpl::ref() { - if (mutex != nullptr) - intrusive_ptr_add_ref(mutex); - return mutex; + intrusive_ptr_add_ref(this); + return this; } /** Decrease the refcount for this mutex */ -void SIMIX_mutex_unref(smx_mutex_t mutex) +void MutexImpl::unref() { - if (mutex != nullptr) - intrusive_ptr_release(mutex); + intrusive_ptr_release(this); } +} // namespace activity +} // namespace kernel +} // namespace simgrid + // Simcall handlers: void simcall_HANDLER_mutex_lock(smx_simcall_t simcall, smx_mutex_t mutex)