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

Public GIT Repository
Merge branch 'klement/simgrid-klement' into master
[simgrid.git] / examples / s4u / actor-migrate / s4u-actor-migrate.cpp
index 4cc22dba1b630f63c4f7b0f4d4ffcfe0df154480..781d9a5cc9bef36bdc449cf6cda1681c45b15ff6 100644 (file)
@@ -49,11 +49,11 @@ static void monitor()
 
   simgrid::s4u::this_actor::sleep_for(5);
 
-  XBT_INFO("After 5 seconds, move the process to %s", jacquelin->get_cname());
+  XBT_INFO("After 5 seconds, move the actor to %s", jacquelin->get_cname());
   actor->set_host(jacquelin);
 
   simgrid::s4u::this_actor::sleep_until(15);
-  XBT_INFO("At t=15, move the process to %s and resume it.", fafard->get_cname());
+  XBT_INFO("At t=15, move the actor to %s and resume it.", fafard->get_cname());
   actor->set_host(fafard);
   actor->resume();
 }