X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b8df87e176f27b25534f27d7e240defa32ca35bc..cb1f41e17133f75d16ce09edee442cda1ae579b6:/examples/s4u/actor-migrate/s4u-actor-migrate.cpp diff --git a/examples/s4u/actor-migrate/s4u-actor-migrate.cpp b/examples/s4u/actor-migrate/s4u-actor-migrate.cpp index 4faa4d6d03..be035dfa52 100644 --- a/examples/s4u/actor-migrate/s4u-actor-migrate.cpp +++ b/examples/s4u/actor-migrate/s4u-actor-migrate.cpp @@ -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);