Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
s4u::Actor: Rename migrate() into set_host()
[simgrid.git] / examples / s4u / actor-migrate / s4u-actor-migrate.cpp
index 4faa4d6..be035df 100644 (file)
@@ -28,7 +28,7 @@ static void worker(simgrid::s4u::Host* first, simgrid::s4u::Host* second)
   XBT_INFO("Let's move to %s to execute %.2f Mflops (5sec on %s and 5sec on %s)", first->get_cname(), flopAmount / 1e6,
            first->get_cname(), second->get_cname());
 
-  simgrid::s4u::this_actor::migrate(first);
+  simgrid::s4u::this_actor::set_host(first);
   simgrid::s4u::this_actor::execute(flopAmount);
 
   XBT_INFO("I wake up on %s. Let's suspend a bit", simgrid::s4u::this_actor::get_host()->get_cname());
@@ -50,18 +50,18 @@ static void monitor()
   simgrid::s4u::this_actor::sleep_for(5);
 
   XBT_INFO("After 5 seconds, move the process to %s", jacquelin->get_cname());
-  actor->migrate(jacquelin);
+  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());
-  actor->migrate(fafard);
+  actor->set_host(fafard);
   actor->resume();
 }
 
 int main(int argc, char* argv[])
 {
   simgrid::s4u::Engine e(&argc, argv);
-  xbt_assert(argc == 2, "Usage: %s platform_file\n\tExample: %s msg_platform.xml\n", argv[0], argv[0]);
+  xbt_assert(argc == 2, "Usage: %s platform_file\n\tExample: %s ../platforms/small_platform.xml\n", argv[0], argv[0]);
   e.load_platform(argv[1]);
 
   simgrid::s4u::Actor::create("monitor", simgrid::s4u::Host::by_name("Boivin"), monitor);