Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Change condition for infinite loops (make sonar believe that function can return).
[simgrid.git] / teshsuite / s4u / actor-autorestart / actor-autorestart.cpp
index cc86142..89189a9 100644 (file)
@@ -17,7 +17,7 @@ static void dummy()
 static void dummy_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(80.0);
   }