X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b8df87e176f27b25534f27d7e240defa32ca35bc..4d02714ee138a3bd9b02e0064b7a2aa26407e9e8:/examples/s4u/actor-lifetime/s4u-actor-lifetime.cpp diff --git a/examples/s4u/actor-lifetime/s4u-actor-lifetime.cpp b/examples/s4u/actor-lifetime/s4u-actor-lifetime.cpp index c11c4b9e58..fb2990ff5b 100644 --- a/examples/s4u/actor-lifetime/s4u-actor-lifetime.cpp +++ b/examples/s4u/actor-lifetime/s4u-actor-lifetime.cpp @@ -16,17 +16,17 @@ class sleeper { public: explicit sleeper(std::vector /*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[])