Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetics: remove occurrences of "msg_platform.xml"
[simgrid.git] / examples / s4u / actor-lifetime / s4u-actor-lifetime.cpp
index c11c4b9..d73b509 100644 (file)
@@ -16,25 +16,26 @@ 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[])
 {
   simgrid::s4u::Engine e(&argc, argv);
 
-  xbt_assert(argc > 2, "Usage: %s platform_file deployment_file\n"
-                       "\tExample: %s msg_platform.xml msg_deployment.xml\n",
+  xbt_assert(argc > 2,
+             "Usage: %s platform_file deployment_file\n"
+             "\tExample: %s ../platforms/cluster_backbone.xml ./s4u_actor_lifetime_d.xml\n",
              argv[0], argv[0]);
 
   e.load_platform(argv[1]); /* Load the platform description */