X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a6e4a812f0edc58eeb342f0c990122eabf51e6ec..3203afd846219ef8b41cadda945ea0a98103c46f:/src/kernel/activity/Synchro.cpp diff --git a/src/kernel/activity/Synchro.cpp b/src/kernel/activity/Synchro.cpp index 21dd002330..aa57662850 100644 --- a/src/kernel/activity/Synchro.cpp +++ b/src/kernel/activity/Synchro.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2022. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2023. 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. */ @@ -8,16 +8,12 @@ #include "src/kernel/activity/Synchro.hpp" #include "src/kernel/actor/ActorImpl.hpp" -#include "src/kernel/context/Context.hpp" #include "src/kernel/resource/CpuImpl.hpp" -#include "src/simix/popping_private.hpp" XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ker_synchro, kernel, "Kernel synchronization activity (lock/acquire on a mutex, semaphore or condition)"); -namespace simgrid { -namespace kernel { -namespace activity { +namespace simgrid::kernel::activity { SynchroImpl& SynchroImpl::set_host(s4u::Host* host) { @@ -32,8 +28,8 @@ SynchroImpl& SynchroImpl::set_timeout(double timeout) SynchroImpl* SynchroImpl::start() { - surf_action_ = host_->get_cpu()->sleep(timeout_); - surf_action_->set_activity(this); + model_action_ = host_->get_cpu()->sleep(timeout_); + model_action_->set_activity(this); return this; } @@ -53,21 +49,10 @@ void SynchroImpl::cancel() /* I cannot cancel raw synchros directly. */ } -void SynchroImpl::post() -{ - if (surf_action_->get_state() == resource::Action::State::FAILED) - set_state(State::FAILED); - else if (surf_action_->get_state() == resource::Action::State::FINISHED) - set_state(State::SRC_TIMEOUT); - - clean_action(); - /* Answer all simcalls associated with the synchro */ - finish(); -} void SynchroImpl::set_exception(actor::ActorImpl* issuer) { if (get_state() == State::FAILED) { - issuer->context_->set_wannadie(); + issuer->set_wannadie(); issuer->exception_ = std::make_exception_ptr(HostFailureException(XBT_THROW_POINT, "Host failed")); } else { xbt_assert(get_state() == State::SRC_TIMEOUT, "Internal error in SynchroImpl::finish() unexpected synchro state %s", @@ -78,8 +63,15 @@ void SynchroImpl::set_exception(actor::ActorImpl* issuer) void SynchroImpl::finish() { XBT_DEBUG("SynchroImpl::finish() in state %s", get_state_str()); + if (model_action_->get_state() == resource::Action::State::FAILED) + set_state(State::FAILED); + else if (model_action_->get_state() == resource::Action::State::FINISHED) + set_state(State::SRC_TIMEOUT); + + clean_action(); + xbt_assert(simcalls_.size() == 1, "Unexpected number of simcalls waiting: %zu", simcalls_.size()); - smx_simcall_t simcall = simcalls_.front(); + actor::Simcall* simcall = simcalls_.front(); simcalls_.pop_front(); set_exception(simcall->issuer_); @@ -89,6 +81,4 @@ void SynchroImpl::finish() simcall->issuer_->simcall_answer(); } -} // namespace activity -} // namespace kernel -} // namespace simgrid +} // namespace simgrid::kernel::activity