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

Public GIT Repository
Restore test to its state before commit 08e94eb0482589e4b287cbea301b84daf52635bd.
[simgrid.git] / teshsuite / s4u / actor / actor.cpp
index 47a454ed914060f57921115aedf4dcaab8a0e9cf..01558b2c7755ba390dcfd61bf4df48b07ea3783a 100644 (file)
@@ -12,8 +12,9 @@ static void worker()
   simgrid::s4u::this_actor::sleep_for(.5);
   XBT_INFO("Worker started (PID:%ld, PPID:%ld)", simgrid::s4u::this_actor::get_pid(),
            simgrid::s4u::this_actor::get_ppid());
-  while (1) {
-    XBT_INFO("Plop i am %ssuspended", simgrid::s4u::this_actor::is_suspended() ? "" : "not ");
+  while (simgrid::s4u::this_actor::get_host()->is_on()) {
+    simgrid::s4u::this_actor::yield();
+    XBT_INFO("Plop i am not suspended");
     simgrid::s4u::this_actor::sleep_for(1);
   }
   XBT_INFO("I'm done. See you!");