Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove superfluous indirection.
[simgrid.git] / examples / s4u / energy-boot / s4u-energy-boot.cpp
index 4be7995..0085dde 100644 (file)
@@ -1,10 +1,10 @@
-/* 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. */
 
 /* This is an example of how the bootup and shutdown periods can be modeled
- * with SimGrid, takes both the time and overall consumption into account.
+ * with SimGrid, taking both the time and overall consumption into account.
  *
  * The main idea is to augment the platform description to declare fake
  * pstate that represent these states. The CPU speed of these state is zero
@@ -105,7 +105,7 @@ 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);
+  simgrid::s4u::Actor::create("Boot Monitor", simgrid::s4u::Host::by_name("MyHost2"), monitor);
 
   e.run();