X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/149c63f36e15b8500b1e826bda5138318ff7ba2b..08e7455d67920bbd7a87f440d00f2c1e071314a0:/src/kernel/activity/MutexImpl.cpp diff --git a/src/kernel/activity/MutexImpl.cpp b/src/kernel/activity/MutexImpl.cpp index 8505e91484..cecb9056c3 100644 --- a/src/kernel/activity/MutexImpl.cpp +++ b/src/kernel/activity/MutexImpl.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2020. 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. */ @@ -23,8 +23,8 @@ void MutexImpl::lock(actor::ActorImpl* issuer) /* Somebody using the mutex, use a synchronization to get host failures */ synchro = RawImplPtr(new RawImpl()); (*synchro).set_host(issuer->get_host()).start(); - synchro->simcalls_.push_back(&issuer->simcall); - issuer->waiting_synchro = synchro; + synchro->simcalls_.push_back(&issuer->simcall_); + issuer->waiting_synchro_ = synchro; sleeping_.push_back(*issuer); } else { /* mutex free */ @@ -71,7 +71,7 @@ void MutexImpl::unlock(actor::ActorImpl* issuer) /* Give the ownership to the first waiting actor */ owner_ = &sleeping_.front(); sleeping_.pop_front(); - owner_->waiting_synchro = nullptr; + owner_->waiting_synchro_ = nullptr; owner_->simcall_answer(); } else { /* nobody to wake up */