Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of framagit.org:simgrid/simgrid
[simgrid.git] / examples / cpp / synchro-barrier / s4u-synchro-barrier.cpp
1 /* Copyright (c) 2006-2021. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "simgrid/s4u.hpp"
7
8 XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_test, "a sample log category");
9
10 /// Wait on the barrier then leave
11 static void worker(simgrid::s4u::BarrierPtr barrier)
12 {
13     XBT_INFO("Waiting on the barrier");
14     barrier->wait();
15
16     XBT_INFO("Bye");
17 }
18
19 /// Spawn actor_count-1 workers and do a barrier with them
20 static void master(int actor_count)
21 {
22   simgrid::s4u::BarrierPtr barrier = simgrid::s4u::Barrier::create(actor_count);
23
24   XBT_INFO("Spawning %d workers", actor_count - 1);
25   for (int i = 0; i < actor_count - 1; i++) {
26     simgrid::s4u::Actor::create("worker", simgrid::s4u::Host::by_name("Jupiter"), worker, barrier);
27   }
28
29     XBT_INFO("Waiting on the barrier");
30     barrier->wait();
31
32     XBT_INFO("Bye");
33 }
34
35 int main(int argc, char **argv)
36 {
37   simgrid::s4u::Engine e(&argc, argv);
38
39   // Parameter: Number of actores in the barrier
40   xbt_assert(argc >= 2, "Usage: %s <actor-count>\n", argv[0]);
41   int actor_count = std::stoi(argv[1]);
42   xbt_assert(actor_count > 0, "<actor-count> must be greater than 0");
43
44   e.load_platform("../../platforms/two_hosts.xml");
45   simgrid::s4u::Actor::create("master", simgrid::s4u::Host::by_name("Tremblay"), master, actor_count);
46   e.run();
47
48   return 0;
49 }