X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/001737a15701027974d89260771284a45013d2cd..42ec07cc0c4fb24df86b22c97bfbeab2f0a21c8e:/src/kernel/activity/MutexImpl.cpp diff --git a/src/kernel/activity/MutexImpl.cpp b/src/kernel/activity/MutexImpl.cpp index 883f135bbd..2715bfb69a 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-2021. 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. */ @@ -6,42 +6,41 @@ #include "src/kernel/activity/MutexImpl.hpp" #include "src/kernel/activity/SynchroRaw.hpp" +#if SIMGRID_HAVE_MC +#include "simgrid/modelchecker.h" +#include "src/mc/mc_safety.hpp" +#define MC_CHECK_NO_DPOR() \ + xbt_assert(not MC_is_active() || simgrid::mc::reduction_mode != simgrid::mc::ReductionMode::dpor, \ + "Mutex is currently not supported with DPOR, use --cfg=model-check/reduction:none") +#else +#define MC_CHECK_NO_DPOR() (void)0 +#endif + XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_mutex, simix_synchro, "Mutex kernel-space implementation"); 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); + MC_CHECK_NO_DPOR(); /* FIXME: check where to validate the arguments */ RawImplPtr synchro = nullptr; 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->simcalls_.push_back(&issuer->simcall); - issuer->waiting_synchro = synchro; + synchro = RawImplPtr(new RawImpl([this, issuer]() { this->remove_sleeping_actor(*issuer); })); + (*synchro).set_host(issuer->get_host()).start(); + synchro->register_simcall(&issuer->simcall_); sleeping_.push_back(*issuer); } else { /* mutex free */ locked_ = true; owner_ = issuer; - SIMIX_simcall_answer(&issuer->simcall); + issuer->simcall_answer(); } XBT_OUT(); } @@ -54,6 +53,7 @@ void MutexImpl::lock(actor::ActorImpl* issuer) bool MutexImpl::try_lock(actor::ActorImpl* issuer) { XBT_IN("(%p, %p)", this, issuer); + MC_CHECK_NO_DPOR(); if (locked_) { XBT_OUT(); return false; @@ -74,21 +74,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; @@ -112,20 +107,3 @@ void MutexImpl::unref() } // namespace activity } // namespace kernel } // namespace simgrid - -// Simcall handlers: - -void simcall_HANDLER_mutex_lock(smx_simcall_t simcall, smx_mutex_t mutex) -{ - mutex->lock(simcall->issuer); -} - -int simcall_HANDLER_mutex_trylock(smx_simcall_t simcall, smx_mutex_t mutex) -{ - return mutex->try_lock(simcall->issuer); -} - -void simcall_HANDLER_mutex_unlock(smx_simcall_t simcall, smx_mutex_t mutex) -{ - mutex->unlock(simcall->issuer); -}