X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/149c63f36e15b8500b1e826bda5138318ff7ba2b..ac5495a0100e29d3ac7750d4cb80e79126c157f8:/teshsuite/s4u/cloud-interrupt-migration/cloud-interrupt-migration.cpp diff --git a/teshsuite/s4u/cloud-interrupt-migration/cloud-interrupt-migration.cpp b/teshsuite/s4u/cloud-interrupt-migration/cloud-interrupt-migration.cpp index 6d6c6ddd67..925191d3c0 100644 --- a/teshsuite/s4u/cloud-interrupt-migration/cloud-interrupt-migration.cpp +++ b/teshsuite/s4u/cloud-interrupt-migration/cloud-interrupt-migration.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2017-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2017-2022. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -29,7 +29,7 @@ static void master_main() simgrid::s4u::Host* pm0 = simgrid::s4u::Host::by_name("Fafard"); simgrid::s4u::Host* pm1 = simgrid::s4u::Host::by_name("Tremblay"); - simgrid::s4u::VirtualMachine* vm0 = new simgrid::s4u::VirtualMachine("VM0", pm0, 1); + auto* vm0 = pm0->create_vm("VM0", 1); vm0->set_ramsize(1e9); // 1Gbytes vm0->start(); @@ -61,7 +61,7 @@ int main(int argc, char* argv[]) /* load the platform file */ e.load_platform(argv[1]); - simgrid::s4u::Actor::create("master_", simgrid::s4u::Host::by_name("Fafard"), master_main); + simgrid::s4u::Actor::create("master_", e.host_by_name("Fafard"), master_main); e.run();