X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7e34d26dd133ad8707b8322995fe7164d96a406b..ea74f5d95928a521a588737e81f1de94eef25d19:/src/kernel/activity/MutexImpl.cpp diff --git a/src/kernel/activity/MutexImpl.cpp b/src/kernel/activity/MutexImpl.cpp index c0f2a198da..660d77cfe4 100644 --- a/src/kernel/activity/MutexImpl.cpp +++ b/src/kernel/activity/MutexImpl.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2021. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2022. 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. */ @@ -10,13 +10,13 @@ #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, \ + xbt_assert(not MC_is_active() || mc::reduction_mode != 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"); +XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ker_mutex, ker_synchro, "Mutex kernel-space implementation"); namespace simgrid { namespace kernel { @@ -26,16 +26,13 @@ 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([this, issuer]() { this->remove_sleeping_actor(*issuer); })); + RawImplPtr synchro(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 */ @@ -46,9 +43,9 @@ void MutexImpl::lock(actor::ActorImpl* issuer) XBT_OUT(); } -/** Tries to lock the mutex for a process +/** Tries to lock the mutex for a actor * - * @param issuer the process that tries to acquire the mutex + * @param issuer the actor that tries to acquire the mutex * @return whether we managed to lock the mutex */ bool MutexImpl::try_lock(actor::ActorImpl* issuer) @@ -66,11 +63,11 @@ bool MutexImpl::try_lock(actor::ActorImpl* issuer) return true; } -/** Unlock a mutex for a process +/** Unlock a mutex for a actor * - * Unlocks the mutex and gives it to a process waiting for it. + * Unlocks the mutex and gives it to a actor waiting for it. * If the unlocker is not the owner of the mutex nothing happens. - * If there are no process waiting, it sets the mutex as free. + * If there are no actor waiting, it sets the mutex as free. */ void MutexImpl::unlock(actor::ActorImpl* issuer) {