Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines with new year.
[simgrid.git] / examples / s4u / synchro-barrier / s4u-synchro-barrier.cpp
index 2624745..d816f50 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2006-2018. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2006-2020. 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. */
@@ -35,12 +35,13 @@ static void master(int process_count)
 
 int main(int argc, char **argv)
 {
+  simgrid::s4u::Engine e(&argc, argv);
+
   // Parameter: Number of processes in the barrier
   xbt_assert(argc >= 2, "Usage: %s <process-count>\n", argv[0]);
   int process_count = std::stoi(argv[1]);
   xbt_assert(process_count > 0, "<process-count> must be greater than 0");
 
-  simgrid::s4u::Engine e(&argc, argv);
   e.load_platform("../../platforms/two_hosts.xml");
   simgrid::s4u::Actor::create("master", simgrid::s4u::Host::by_name("Tremblay"), master, process_count);
   e.run();