]> AND Public Git Repository - simgrid.git/blobdiff - teshsuite/s4u/cloud-two-execs/cloud-two-execs.cpp
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add test for multicore speed/state file
[simgrid.git] / teshsuite / s4u / cloud-two-execs / cloud-two-execs.cpp
index b41808f3141e454f8d92ba1ad71c5ce3f9c2dca4..495453ede1067f66a5bfcb59c595c90912d3e067 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2014-2020. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2014-2021. 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. */
@@ -20,7 +20,7 @@ static void computation_fun()
   exec->wait();
   XBT_INFO("%s:%s Exec 1 complete %g", host_name, pr_name, simgrid::s4u::Engine::get_clock() - clock_sta);
 
-  exec = NULL;
+  exec = nullptr;
 
   simgrid::s4u::this_actor::sleep_for(1);
 
@@ -33,8 +33,8 @@ static void computation_fun()
 
 static void master_main()
 {
-  simgrid::s4u::Host* pm0           = simgrid::s4u::Host::by_name("Fafard");
-  simgrid::s4u::VirtualMachine* vm0 = new simgrid::s4u::VirtualMachine("VM0", pm0, 1);
+  auto* pm0 = simgrid::s4u::Host::by_name("Fafard");
+  auto* vm0 = new simgrid::s4u::VirtualMachine("VM0", pm0, 1);
   vm0->start();
 
   simgrid::s4u::Actor::create("compute", vm0, computation_fun);
@@ -58,7 +58,7 @@ int main(int argc, char* argv[])
   simgrid::s4u::Actor::create("master_", simgrid::s4u::Host::by_name("Fafard"), master_main);
 
   e.run();
-  XBT_INFO("Bye (simulation time %g)", e.get_clock());
+  XBT_INFO("Bye (simulation time %g)", simgrid::s4u::Engine::get_clock());
 
   return 0;
 }