Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
simplify process/actor restart
[simgrid.git] / src / s4u / s4u_actor.cpp
index 01ca722..6b6f2ef 100644 (file)
@@ -184,6 +184,11 @@ void Actor::setProperty(const char* key, const char* value)
   });
 }
 
+Actor* Actor::restart()
+{
+  return simgrid::simix::kernelImmediate([this]() { return pimpl_->restart(); });
+}
+
 // ***** this_actor *****
 
 namespace this_actor {