X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/af72ee01a6a0c01b1a67dc3095f952fd8ab1dd42..b9d349f4e630752232d93f23b5cb3c33e02e0d05:/src/s4u/s4u_Exec.cpp diff --git a/src/s4u/s4u_Exec.cpp b/src/s4u/s4u_Exec.cpp index 09a52752ea..9d1a552226 100644 --- a/src/s4u/s4u_Exec.cpp +++ b/src/s4u/s4u_Exec.cpp @@ -8,6 +8,8 @@ #include "simgrid/s4u/Actor.hpp" #include "simgrid/s4u/Exec.hpp" #include "src/kernel/activity/ExecImpl.hpp" +#include "src/kernel/actor/ActorImpl.hpp" +#include "src/mc/checker/SimcallObserver.hpp" #include "xbt/log.h" XBT_LOG_NEW_DEFAULT_SUBCATEGORY(s4u_exec, s4u_activity, "S4U asynchronous executions"); @@ -38,7 +40,7 @@ Exec* Exec::wait_for(double timeout) if (state_ == State::INITED) vetoable_start(); - kernel::actor::ActorImpl* issuer = Actor::self()->get_impl(); + kernel::actor::ActorImpl* issuer = kernel::actor::ActorImpl::self(); kernel::actor::simcall_blocking([this, issuer, timeout] { this->get_impl()->wait_for(issuer, timeout); }); state_ = State::FINISHED; on_completion(*this); @@ -52,7 +54,14 @@ int Exec::wait_any_for(std::vector* execs, double timeout) std::transform(begin(*execs), end(*execs), begin(rexecs), [](const ExecPtr& exec) { return static_cast(exec->pimpl_.get()); }); - int changed_pos = simcall_execution_waitany_for(rexecs.data(), rexecs.size(), timeout); + kernel::actor::ActorImpl* issuer = kernel::actor::ActorImpl::self(); + mc::ExecutionWaitanySimcall observer{issuer, &rexecs, timeout}; + kernel::actor::simcall_blocking( + [&observer] { + kernel::activity::ExecImpl::wait_any_for(observer.get_issuer(), observer.get_execs(), observer.get_timeout()); + }, + &observer); + int changed_pos = observer.get_result(); if (changed_pos != -1) { on_completion(*(execs->at(changed_pos))); execs->at(changed_pos)->release_dependencies(); @@ -64,6 +73,7 @@ Exec* Exec::cancel() { kernel::actor::simcall([this] { boost::static_pointer_cast(pimpl_)->cancel(); }); state_ = State::CANCELED; + on_completion(*this); return this; } @@ -178,7 +188,6 @@ ExecPtr Exec::set_hosts(const std::vector& hosts) return this; } -///////////// SEQUENTIAL EXECUTIONS //////// Exec* Exec::start() { if (is_parallel()) @@ -236,6 +245,7 @@ double Exec::get_remaining_ratio() const } // namespace s4u } // namespace simgrid + /* **************************** Public C interface *************************** */ void sg_exec_set_bound(sg_exec_t exec, double bound) { @@ -269,7 +279,7 @@ double sg_exec_get_remaining_ratio(const_sg_exec_t exec) void sg_exec_start(sg_exec_t exec) { - exec->start(); + exec->vetoable_start(); } void sg_exec_cancel(sg_exec_t exec)