X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a3d3a7566e185248c9706e2d853d2df38bd5aba8..49a75a876cd9b9284722a63f1b3a02d1283630e1:/src/kernel/activity/SynchroRaw.cpp?ds=sidebyside diff --git a/src/kernel/activity/SynchroRaw.cpp b/src/kernel/activity/SynchroRaw.cpp index 3287a0070e..5b3efd5c5a 100644 --- a/src/kernel/activity/SynchroRaw.cpp +++ b/src/kernel/activity/SynchroRaw.cpp @@ -5,33 +5,58 @@ #include "src/kernel/activity/SynchroRaw.hpp" #include "simgrid/kernel/resource/Action.hpp" +#include "src/kernel/context/Context.hpp" #include "src/simix/smx_synchro_private.hpp" +#include "src/surf/cpu_interface.hpp" #include "src/surf/surf_interface.hpp" +#include XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(simix_synchro); -simgrid::kernel::activity::RawImpl::~RawImpl() +namespace simgrid { +namespace kernel { +namespace activity { + +RawImpl* RawImpl::start(s4u::Host* host, double timeout) +{ + surf_action_ = host->pimpl_cpu->sleep(timeout); + surf_action_->set_data(this); + return this; +} + +RawImpl::~RawImpl() { surf_action_->unref(); } -void simgrid::kernel::activity::RawImpl::suspend() + +void RawImpl::suspend() { /* The suspension of raw synchros is delayed to when the process is rescheduled. */ } -void simgrid::kernel::activity::RawImpl::resume() +void RawImpl::resume() { /* I cannot resume raw synchros directly. This is delayed to when the process is rescheduled at * the end of the synchro. */ } -void simgrid::kernel::activity::RawImpl::post() +void RawImpl::post() { XBT_IN("(%p)",this); - if (surf_action_->get_state() == simgrid::kernel::resource::Action::State::FAILED) + smx_simcall_t simcall = simcalls_.front(); + simcalls_.pop_front(); + + SIMIX_synchro_stop_waiting(simcall->issuer, simcall); + simcall->issuer->waiting_synchro = nullptr; + + if (surf_action_->get_state() == resource::Action::State::FAILED) { state_ = SIMIX_FAILED; - else if (surf_action_->get_state() == simgrid::kernel::resource::Action::State::FINISHED) + simcall->issuer->context_->iwannadie = true; + } else if (surf_action_->get_state() == resource::Action::State::FINISHED) { state_ = SIMIX_SRC_TIMEOUT; - - SIMIX_synchro_finish(this); + SIMIX_simcall_answer(simcall); + } XBT_OUT(); } +} // namespace activity +} // namespace kernel +} // namespace simgrid