X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2cdb13351fe9ef4d8b550c66cbbb5d70d7d9f30c..84402e8e2ee2a2d0bef25fdceb0a263ed8b471f6:/src/kernel/activity/MutexImpl.cpp diff --git a/src/kernel/activity/MutexImpl.cpp b/src/kernel/activity/MutexImpl.cpp index 624c80b3c3..8505e91484 100644 --- a/src/kernel/activity/MutexImpl.cpp +++ b/src/kernel/activity/MutexImpl.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2020. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -12,36 +12,25 @@ 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(smx_actor_t issuer) +void MutexImpl::lock(actor::ActorImpl* issuer) { XBT_IN("(%p; %p)", this, issuer); /* FIXME: check where to validate the arguments */ RawImplPtr synchro = nullptr; - if (this->locked) { + 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; - this->sleeping.push_back(*issuer); + sleeping_.push_back(*issuer); } else { /* mutex free */ - this->locked = true; - this->owner = issuer; - SIMIX_simcall_answer(&issuer->simcall); + locked_ = true; + owner_ = issuer; + issuer->simcall_answer(); } XBT_OUT(); } @@ -51,16 +40,16 @@ void MutexImpl::lock(smx_actor_t issuer) * @param issuer the process that tries to acquire the mutex * @return whether we managed to lock the mutex */ -bool MutexImpl::try_lock(smx_actor_t issuer) +bool MutexImpl::try_lock(actor::ActorImpl* issuer) { XBT_IN("(%p, %p)", this, issuer); - if (this->locked) { + if (locked_) { XBT_OUT(); return false; } - this->locked = true; - this->owner = issuer; + locked_ = true; + owner_ = issuer; XBT_OUT(); return true; } @@ -71,28 +60,23 @@ bool MutexImpl::try_lock(smx_actor_t issuer) * If the unlocker is not the owner of the mutex nothing happens. * If there are no process waiting, it sets the mutex as free. */ -void MutexImpl::unlock(smx_actor_t issuer) +void MutexImpl::unlock(actor::ActorImpl* issuer) { XBT_IN("(%p, %p)", this, issuer); - if (not this->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 != 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->get_pid()); - - if (not this->sleeping.empty()) { - /*process to wake up */ - smx_actor_t p = &this->sleeping.front(); - this->sleeping.pop_front(); - p->waiting_synchro = nullptr; - this->owner = p; - SIMIX_simcall_answer(&p->simcall); + 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()) { + /* Give the ownership to the first waiting actor */ + owner_ = &sleeping_.front(); + sleeping_.pop_front(); + owner_->waiting_synchro = nullptr; + owner_->simcall_answer(); } else { /* nobody to wake up */ - this->locked = false; - this->owner = nullptr; + locked_ = false; + owner_ = nullptr; } XBT_OUT(); } @@ -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_); }