X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0c8715247be54e08ba5aff29764979d16eb643ea..dd05e77cf9fe231aef1608d42c8e45ac3ee5c15c:/examples/s4u/energy-boot/s4u-energy-boot.cpp diff --git a/examples/s4u/energy-boot/s4u-energy-boot.cpp b/examples/s4u/energy-boot/s4u-energy-boot.cpp index 22c47af165..d631c0006f 100644 --- a/examples/s4u/energy-boot/s4u-energy-boot.cpp +++ b/examples/s4u/energy-boot/s4u-energy-boot.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2017. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2018. 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. */ @@ -43,7 +43,7 @@ static void simulate_bootup(simgrid::s4u::Host* host) host->setPstate(3); XBT_INFO("Actually start the host"); - host->turnOn(); + host->turn_on(); XBT_INFO("Wait 150s to simulate the boot time."); simgrid::s4u::this_actor::sleep_for(150); @@ -66,7 +66,7 @@ static void simulate_shutdown(simgrid::s4u::Host* host) host->setPstate(previous_pstate); XBT_INFO("Actually shutdown the host"); - host->turnOff(); + host->turn_off(); } static int monitor() @@ -104,8 +104,8 @@ int main(int argc, char* argv[]) xbt_assert(argc == 2, "Usage: %s platform_file\n\tExample: %s platform.xml\n", argv[0], argv[0]); - e.loadPlatform(argv[1]); - simgrid::s4u::Actor::createActor("Boot Monitor", simgrid::s4u::Host::by_name("MyHost2"), monitor); + e.load_platform(argv[1]); + simgrid::s4u::Actor::create("Boot Monitor", simgrid::s4u::Host::by_name("MyHost2"), monitor); e.run();