X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/45176f410366aa94795f4e48cc6282b262a4b3dd..0a95c78251f3ecbf1dfcb3ebe7904e44acf1beef:/src/s4u/s4u_actor.cpp diff --git a/src/s4u/s4u_actor.cpp b/src/s4u/s4u_actor.cpp index 58de67d35d..4d082c1e0b 100644 --- a/src/s4u/s4u_actor.cpp +++ b/src/s4u/s4u_actor.cpp @@ -28,23 +28,19 @@ ActorPtr Actor::self() return simgrid::s4u::ActorPtr(&self_context->process()->getIface()); } - -ActorPtr Actor::createActor(const char* name, s4u::Host *host, double killTime, std::function code) +ActorPtr Actor::createActor(const char* name, s4u::Host* host, std::function code) { // TODO, when autorestart is used, the std::function is copied so the new // instance will get a fresh (reinitialized) state. Is this what we want? - smx_actor_t process = simcall_process_create( - name, std::move(code), nullptr, host, killTime, nullptr, 0); + smx_actor_t process = simcall_process_create(name, std::move(code), nullptr, host, nullptr, 0); return ActorPtr(&process->getIface()); } -ActorPtr Actor::createActor(const char* name, s4u::Host *host, double killTime, - const char* function, std::vector args) +ActorPtr Actor::createActor(const char* name, s4u::Host* host, const char* function, std::vector args) { simgrid::simix::ActorCodeFactory& factory = SIMIX_get_actor_code_factory(function); simgrid::simix::ActorCode code = factory(std::move(args)); - smx_actor_t process = simcall_process_create( - name, std::move(code), nullptr, host, killTime, nullptr, 0); + smx_actor_t process = simcall_process_create(name, std::move(code), nullptr, host, nullptr, 0); return ActorPtr(&process->getIface()); }