Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
moved a line for comprehension
[simgrid.git] / examples / s4u / actor-kill / s4u-actor-kill.cpp
index 8f3d15a398005d9b73c6b2dc20167302eba5cd0b..ae162a1ef70956edda346f660f8f1d5050b75142 100644 (file)
@@ -13,7 +13,7 @@ static void victimA_fun()
   XBT_INFO("Hello!");
   XBT_INFO("Suspending myself");
   simgrid::s4u::this_actor::suspend(); /* - Start by suspending itself */
-  XBT_INFO("OK, OK. Let's work");      /* - Then is resumed and start to execute a task */
+  XBT_INFO("OK, OK. Let's work");      /* - Then is resumed and start to execute some flops */
   simgrid::s4u::this_actor::execute(1e9);
   XBT_INFO("Bye!"); /* - But will never reach the end of it */
 }