X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/fe304706848f0a64477d4687b3ea97d5b9a0c35c..65e32be46137f88aaa89385c2c9e83025bfbb06f:/src/kernel/activity/MutexImpl.cpp diff --git a/src/kernel/activity/MutexImpl.cpp b/src/kernel/activity/MutexImpl.cpp index 281cca447c..9269c91f6e 100644 --- a/src/kernel/activity/MutexImpl.cpp +++ b/src/kernel/activity/MutexImpl.cpp @@ -30,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(); } @@ -63,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;