X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/96cedde3cdbc0b8ffc3f096a1b65d021b0226f99..7aa058f61406a26cf8ff9f1a04bfca254c775c62:/teshsuite/s4u/actor-autorestart/actor-autorestart.cpp diff --git a/teshsuite/s4u/actor-autorestart/actor-autorestart.cpp b/teshsuite/s4u/actor-autorestart/actor-autorestart.cpp index d26fd377fc..89189a9584 100644 --- a/teshsuite/s4u/actor-autorestart/actor-autorestart.cpp +++ b/teshsuite/s4u/actor-autorestart/actor-autorestart.cpp @@ -10,21 +10,34 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_test, "Messages specific for this s4u example") static void dummy() { XBT_INFO("I start"); - try { simgrid::s4u::this_actor::sleep_for(200); XBT_INFO("I stop"); - } catch (simgrid::HostFailureException& e) { - XBT_DEBUG("The host has died ... as expected. This actor silently stops"); +} + +static void dummy_daemon() +{ + simgrid::s4u::Actor::self()->daemonize(); + while (simgrid::s4u::this_actor::get_host()->is_on()) { + XBT_INFO("Hello from the infinite loop"); + simgrid::s4u::this_actor::sleep_for(80.0); } } static void autostart() { simgrid::s4u::Host* host = simgrid::s4u::Host::by_name("Fafard"); - XBT_INFO("starting a dummy process on %s ", host->get_cname()); + XBT_INFO("starting a dummy process on %s", host->get_cname()); simgrid::s4u::ActorPtr dummy_actor = simgrid::s4u::Actor::create("Dummy", host, dummy); + dummy_actor->on_exit([](bool) { XBT_INFO("On_exit callback set before autorestart"); }); dummy_actor->set_auto_restart(true); + dummy_actor->on_exit([](bool) { XBT_INFO("On_exit callback set after autorestart"); }); + + XBT_INFO("starting a daemon process on %s", host->get_cname()); + simgrid::s4u::ActorPtr daemon_actor = simgrid::s4u::Actor::create("Daemon", host, dummy_daemon); + daemon_actor->on_exit([](bool) { XBT_INFO("On_exit callback set before autorestart"); }); + daemon_actor->set_auto_restart(true); + daemon_actor->on_exit([](bool) { XBT_INFO("On_exit callback set after autorestart"); }); simgrid::s4u::this_actor::sleep_for(50);