X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0184f298bc4cc735d2cf2604e430d85d350d4b7c..5187c5adc474e53b2f3cbf680cb0b950bf40f5a1:/src/kernel/activity/SynchroRaw.cpp diff --git a/src/kernel/activity/SynchroRaw.cpp b/src/kernel/activity/SynchroRaw.cpp index de052c10c9..171199b70d 100644 --- a/src/kernel/activity/SynchroRaw.cpp +++ b/src/kernel/activity/SynchroRaw.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2020. 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. */ @@ -57,9 +57,9 @@ void RawImpl::cancel() void RawImpl::post() { if (surf_action_->get_state() == resource::Action::State::FAILED) { - state_ = SIMIX_FAILED; + state_ = State::FAILED; } else if (surf_action_->get_state() == resource::Action::State::FINISHED) { - state_ = SIMIX_SRC_TIMEOUT; + state_ = State::SRC_TIMEOUT; } finish(); } @@ -69,45 +69,42 @@ void RawImpl::finish() smx_simcall_t simcall = simcalls_.front(); simcalls_.pop_front(); - if (state_ == SIMIX_FAILED) { - XBT_DEBUG("RawImpl::finish(): host '%s' failed", simcall->issuer->get_host()->get_cname()); - simcall->issuer->context_->iwannadie = true; - simcall->issuer->exception_ = std::make_exception_ptr(HostFailureException(XBT_THROW_POINT, "Host failed")); - } else if (state_ == SIMIX_SRC_TIMEOUT) { - simcall->issuer->exception_ = std::make_exception_ptr(TimeoutError(XBT_THROW_POINT, "Synchronization timeout")); - } else { + if (state_ == State::FAILED) { + XBT_DEBUG("RawImpl::finish(): host '%s' failed", simcall->issuer_->get_host()->get_cname()); + simcall->issuer_->context_->set_wannadie(); + simcall->issuer_->exception_ = std::make_exception_ptr(HostFailureException(XBT_THROW_POINT, "Host failed")); + } else if (state_ != State::SRC_TIMEOUT) { xbt_die("Internal error in RawImpl::finish() unexpected synchro state %d", static_cast(state_)); } - switch (simcall->call) { - + switch (simcall->call_) { case SIMCALL_MUTEX_LOCK: - simgrid::xbt::intrusive_erase(simcall_mutex_lock__get__mutex(simcall)->sleeping_, *simcall->issuer); + simcall_mutex_lock__get__mutex(simcall)->remove_sleeping_actor(*simcall->issuer_); break; case SIMCALL_COND_WAIT: - simgrid::xbt::intrusive_erase(simcall_cond_wait__get__cond(simcall)->sleeping_, *simcall->issuer); + simcall_cond_wait_timeout__get__cond(simcall)->remove_sleeping_actor(*simcall->issuer_); break; case SIMCALL_COND_WAIT_TIMEOUT: - simgrid::xbt::intrusive_erase(simcall_cond_wait_timeout__get__cond(simcall)->sleeping_, *simcall->issuer); + simcall_cond_wait_timeout__get__cond(simcall)->remove_sleeping_actor(*simcall->issuer_); simcall_cond_wait_timeout__set__result(simcall, 1); // signal a timeout break; case SIMCALL_SEM_ACQUIRE: - simgrid::xbt::intrusive_erase(simcall_sem_acquire__get__sem(simcall)->sleeping_, *simcall->issuer); + simcall_sem_acquire_timeout__get__sem(simcall)->remove_sleeping_actor(*simcall->issuer_); break; case SIMCALL_SEM_ACQUIRE_TIMEOUT: - simgrid::xbt::intrusive_erase(simcall_sem_acquire_timeout__get__sem(simcall)->sleeping_, *simcall->issuer); + simcall_sem_acquire_timeout__get__sem(simcall)->remove_sleeping_actor(*simcall->issuer_); simcall_sem_acquire_timeout__set__result(simcall, 1); // signal a timeout break; default: THROW_IMPOSSIBLE; } - simcall->issuer->waiting_synchro = nullptr; - SIMIX_simcall_answer(simcall); + simcall->issuer_->waiting_synchro = nullptr; + simcall->issuer_->simcall_answer(); } } // namespace activity