Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
hopefully fix most issues. thx agier for spotting the main one
[simgrid.git] / src / s4u / s4u_Actor.cpp
index ed619e0..d4ecc67 100644 (file)
@@ -39,11 +39,25 @@ ActorPtr Actor::self()
 
   return self_context->get_actor()->iface();
 }
+ActorPtr Actor::init(std::string name, s4u::Host* host)
+{
+  smx_actor_t self = SIMIX_process_self();
+  simgrid::kernel::actor::ActorImpl* actor =
+      simgrid::simix::simcall([self, name, host] { return self->init(std::move(name), host).get(); });
+  return actor->ciface();
+}
+
+ActorPtr Actor::start(std::function<void()> code)
+{
+  simgrid::simix::simcall([this, code] { pimpl_->start(code); });
+  return this;
+}
 
 ActorPtr Actor::create(std::string name, s4u::Host* host, std::function<void()> code)
 {
   simgrid::kernel::actor::ActorImpl* actor =
       simcall_process_create(std::move(name), std::move(code), nullptr, host, nullptr);
+
   return actor->iface();
 }