X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/fbf96d959e4912fe445823b75cf102a0e89131e2..b22adadfea7ebc1441083b43c6e287cdf1eaa79a:/src/s4u/s4u_actor.cpp diff --git a/src/s4u/s4u_actor.cpp b/src/s4u/s4u_actor.cpp index c239a29cf5..6b6f990c46 100644 --- a/src/s4u/s4u_actor.cpp +++ b/src/s4u/s4u_actor.cpp @@ -5,15 +5,13 @@ * 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/comm.hpp" #include "simgrid/s4u/host.hpp" - -#include "../msg/msg_private.hpp" #include "simgrid/s4u/Mailbox.hpp" #include "src/kernel/context/Context.hpp" -#include "src/simix/smx_private.h" XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_actor,"S4U actors"); @@ -36,8 +34,7 @@ ActorPtr Actor::createActor(const char* name, s4u::Host *host, double killTime, // 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->name().c_str(), - killTime, nullptr, 0); + name, std::move(code), nullptr, host, killTime, nullptr, 0); return ActorPtr(&process->getIface()); } @@ -47,8 +44,7 @@ ActorPtr Actor::createActor(const char* name, s4u::Host *host, double killTime, 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->name().c_str(), - killTime, nullptr, 0); + name, std::move(code), nullptr, host, killTime, nullptr, 0); return ActorPtr(&process->getIface()); }