]> AND Public Git Repository - simgrid.git/blobdiff - examples/s4u/actor-daemon/s4u-actor-daemon.cpp
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[sonar] Regexps are overkill here.
[simgrid.git] / examples / s4u / actor-daemon / s4u-actor-daemon.cpp
index 54037a634b8849edaa42a7dbabfafb39e8ea811d..4372bd4aa719294a21a85ec436f14610e0976ec2 100644 (file)
@@ -21,7 +21,7 @@ static void my_daemon()
 {
   simgrid::s4u::Actor::self()->daemonize();
 
-  while (1) {
+  while (simgrid::s4u::this_actor::get_host()->is_on()) {
     XBT_INFO("Hello from the infinite loop");
     simgrid::s4u::this_actor::sleep_for(3.0);
   }