Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Sanitize the prototype of Actor::on_exit() callbacks
[simgrid.git] / examples / s4u / actor-lifetime / s4u-actor-lifetime.cpp
index c11c4b9..fb2990f 100644 (file)
@@ -16,17 +16,17 @@ class sleeper {
 public:
   explicit sleeper(std::vector<std::string> /*args*/)
   {
-    simgrid::s4u::this_actor::on_exit(
-        [](int, void*) {
-          /* Executed on process termination, to display a message helping to understand the output */
-          XBT_INFO("Exiting now (done sleeping or got killed).");
-        },
-        nullptr);
-
+    simgrid::s4u::this_actor::on_exit([](bool /*failed*/) {
+      /* Executed on process termination, to display a message helping to understand the output */
+      XBT_INFO("Exiting now (done sleeping or got killed).");
+    });
+  }
+  void operator()()
+  {
     XBT_INFO("Hello! I go to sleep.");
     simgrid::s4u::this_actor::sleep_for(10);
+    XBT_INFO("Done sleeping.");
   }
-  void operator()() { XBT_INFO("Done sleeping."); }
 };
 
 int main(int argc, char* argv[])