X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/bba28202d80db522aef1af8dd81c9b9e3e0d3049..e9a86ac48ea8d06ddebe18744c40548a9f65956f:/src/s4u/s4u_Exec.cpp diff --git a/src/s4u/s4u_Exec.cpp b/src/s4u/s4u_Exec.cpp index 94e63f78ce..94da9d2bd3 100644 --- a/src/s4u/s4u_Exec.cpp +++ b/src/s4u/s4u_Exec.cpp @@ -2,11 +2,11 @@ /* 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. */ -#include "xbt/log.h" #include "simgrid/s4u/Actor.hpp" #include "simgrid/s4u/Exec.hpp" #include "src/kernel/activity/ExecImpl.hpp" +#include "xbt/log.h" XBT_LOG_NEW_DEFAULT_SUBCATEGORY(s4u_exec, s4u_activity, "S4U asynchronous executions"); @@ -15,12 +15,18 @@ namespace s4u { Activity* Exec::start() { - pimpl_ = simcall_execution_start(nullptr, flops_amount_, 1. / priority_, 0., host_); - boost::static_pointer_cast(pimpl_)->set_bound(bound_); + pimpl_ = simcall_execution_start(name_, tracing_category_, flops_amount_, 1. / priority_, bound_, host_); state_ = State::STARTED; return this; } +Activity* Exec::cancel() +{ + simcall_execution_cancel(pimpl_); + state_ = State::CANCELED; + return this; +} + Activity* Exec::wait() { simcall_execution_wait(pimpl_); @@ -90,6 +96,20 @@ ExecPtr Exec::set_host(Host* host) return this; } +ExecPtr Exec::set_name(std::string name) +{ + xbt_assert(state_ == State::INITED, "Cannot change the name of an exec after its start"); + name_ = 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() {