X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/82fafbab5f8ce1530037fd245d678e917119caa0..42ec07cc0c4fb24df86b22c97bfbeab2f0a21c8e:/src/kernel/activity/MutexImpl.cpp diff --git a/src/kernel/activity/MutexImpl.cpp b/src/kernel/activity/MutexImpl.cpp index 5569f8af10..2715bfb69a 100644 --- a/src/kernel/activity/MutexImpl.cpp +++ b/src/kernel/activity/MutexImpl.cpp @@ -6,6 +6,16 @@ #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 { @@ -15,16 +25,16 @@ namespace activity { 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()); + synchro = RawImplPtr(new RawImpl([this, issuer]() { this->remove_sleeping_actor(*issuer); })); (*synchro).set_host(issuer->get_host()).start(); - synchro->simcalls_.push_back(&issuer->simcall_); - issuer->waiting_synchro_ = synchro; + synchro->register_simcall(&issuer->simcall_); sleeping_.push_back(*issuer); } else { /* mutex free */ @@ -43,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; @@ -96,10 +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_); -}