X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/37dcfafac51a942b0219878f2a329b0db83e2ba7..98c282b89b7655c6bcf59ff44662325b40a16754:/src/s4u/s4u_Exec.cpp diff --git a/src/s4u/s4u_Exec.cpp b/src/s4u/s4u_Exec.cpp index d956b76c19..fda9b5bcde 100644 --- a/src/s4u/s4u_Exec.cpp +++ b/src/s4u/s4u_Exec.cpp @@ -15,11 +15,18 @@ namespace s4u { Activity* 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; return this; } +Activity* Exec::cancel() +{ + simgrid::simix::simcall([this] { dynamic_cast(pimpl_.get())->cancel(); }); + state_ = State::CANCELED; + return this; +} + Activity* Exec::wait() { simcall_execution_wait(pimpl_); @@ -96,6 +103,13 @@ ExecPtr Exec::set_name(std::string name) return this; } +ExecPtr Exec::set_tracing_category(std::string category) +{ + xbt_assert(state_ == State::INITED, "Cannot change the tracing category of an exec after its start"); + tracing_category_ = category; + return this; +} + /** @brief Retrieve the host on which this activity takes place. */ Host* Exec::get_host() {