X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/98b96e960102644def66b7e75f084626d557ae4b..7685128879fd2a88a5b9226114c223c65517668c:/src/s4u/s4u_Exec.cpp diff --git a/src/s4u/s4u_Exec.cpp b/src/s4u/s4u_Exec.cpp index a61217da96..884433ac64 100644 --- a/src/s4u/s4u_Exec.cpp +++ b/src/s4u/s4u_Exec.cpp @@ -12,22 +12,35 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(s4u_exec, s4u_activity, "S4U asynchronous execut namespace simgrid { namespace s4u { +simgrid::xbt::signal s4u::Exec::on_start; +simgrid::xbt::signal s4u::Exec::on_completion; -Activity* Exec::start() +Exec* Exec::start() { - pimpl_ = simcall_execution_start(name_, flops_amount_, 1. / priority_, bound_, host_); + pimpl_ = simcall_execution_start(name_, tracing_category_, flops_amount_, 1. / priority_, bound_, host_); state_ = State::STARTED; + on_start(Actor::self()); return this; } -Activity* Exec::wait() +Exec* Exec::cancel() { + simgrid::simix::simcall([this] { dynamic_cast(pimpl_.get())->cancel(); }); + state_ = State::CANCELED; + return this; +} + +Exec* Exec::wait() +{ + if (state_ == State::INITED) + start(); simcall_execution_wait(pimpl_); state_ = State::FINISHED; + on_completion(Actor::self()); return this; } -Activity* Exec::wait(double timeout) +Exec* Exec::wait_for(double timeout) { THROW_UNIMPLEMENTED; return this; @@ -98,13 +111,8 @@ ExecPtr Exec::set_name(std::string name) ExecPtr Exec::set_tracing_category(std::string category) { - xbt_assert(state_ == State::INITED, "Cannot change the name of an exec after its start"); - if (category.empty()) - return this; - - simgrid::simix::simcall([this, category] { - boost::static_pointer_cast(pimpl_)->set_category(category); - }); + xbt_assert(state_ == State::INITED, "Cannot change the tracing category of an exec after its start"); + tracing_category_ = category; return this; }