X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/001737a15701027974d89260771284a45013d2cd..47950eebfede4e41862022469d15e5e4fe19c7ba:/src/kernel/activity/MutexImpl.cpp diff --git a/src/kernel/activity/MutexImpl.cpp b/src/kernel/activity/MutexImpl.cpp index 883f135bbd..9274c47766 100644 --- a/src/kernel/activity/MutexImpl.cpp +++ b/src/kernel/activity/MutexImpl.cpp @@ -12,18 +12,6 @@ namespace simgrid { namespace kernel { namespace activity { -MutexImpl::MutexImpl() : piface_(this) -{ - XBT_IN("(%p)", this); - XBT_OUT(); -} - -MutexImpl::~MutexImpl() -{ - XBT_IN("(%p)", this); - XBT_OUT(); -} - void MutexImpl::lock(actor::ActorImpl* issuer) { XBT_IN("(%p; %p)", this, issuer); @@ -33,7 +21,8 @@ void MutexImpl::lock(actor::ActorImpl* issuer) if (locked_) { /* FIXME: check if the host is active ? */ /* Somebody using the mutex, use a synchronization to get host failures */ - synchro = RawImplPtr(new RawImpl())->start(issuer->get_host(), -1); + synchro = RawImplPtr(new RawImpl()); + (*synchro).set_host(issuer->get_host()).start(); synchro->simcalls_.push_back(&issuer->simcall); issuer->waiting_synchro = synchro; sleeping_.push_back(*issuer); @@ -41,7 +30,7 @@ void MutexImpl::lock(actor::ActorImpl* issuer) /* mutex free */ locked_ = true; owner_ = issuer; - SIMIX_simcall_answer(&issuer->simcall); + issuer->simcall_answer(); } XBT_OUT(); } @@ -74,21 +63,16 @@ bool MutexImpl::try_lock(actor::ActorImpl* issuer) void MutexImpl::unlock(actor::ActorImpl* issuer) { XBT_IN("(%p, %p)", this, issuer); - if (not locked_) - THROWF(mismatch_error, 0, "Cannot release that mutex: it was not locked."); - - /* If the mutex is not owned by the issuer, that's not good */ - if (issuer != owner_) - THROWF(mismatch_error, 0, "Cannot release that mutex: it was locked by %s (pid:%ld), not by you.", - owner_->get_cname(), owner_->get_pid()); + xbt_assert(locked_, "Cannot release that mutex: it was not locked."); + xbt_assert(issuer == owner_, "Cannot release that mutex: it was locked by %s (pid:%ld), not by you.", + owner_->get_cname(), owner_->get_pid()); if (not sleeping_.empty()) { - /*process to wake up */ - actor::ActorImpl* p = &sleeping_.front(); + /* Give the ownership to the first waiting actor */ + owner_ = &sleeping_.front(); sleeping_.pop_front(); - p->waiting_synchro = nullptr; - owner_ = p; - SIMIX_simcall_answer(&p->simcall); + owner_->waiting_synchro = nullptr; + owner_->simcall_answer(); } else { /* nobody to wake up */ locked_ = false; @@ -117,15 +101,15 @@ void MutexImpl::unref() void simcall_HANDLER_mutex_lock(smx_simcall_t simcall, smx_mutex_t mutex) { - mutex->lock(simcall->issuer); + mutex->lock(simcall->issuer_); } int simcall_HANDLER_mutex_trylock(smx_simcall_t simcall, smx_mutex_t mutex) { - return mutex->try_lock(simcall->issuer); + return mutex->try_lock(simcall->issuer_); } void simcall_HANDLER_mutex_unlock(smx_simcall_t simcall, smx_mutex_t mutex) { - mutex->unlock(simcall->issuer); + mutex->unlock(simcall->issuer_); }