Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
start snake_casing s4u::Actor
[simgrid.git] / examples / s4u / exec-basic / s4u-exec-basic.cpp
1 /* Copyright (c) 2010-2018. 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, "Messages specific for this s4u example");
9
10 static int executor(std::vector<std::string> /*args*/)
11 {
12   /* this_actor::execute() tells SimGrid to pause the calling actor
13    * until its host has computed the amount of flops passed as a parameter */
14   simgrid::s4u::this_actor::execute(98095);
15   XBT_INFO("Done.");
16
17   /* This simple example does not do anything beyond that */
18   return 0;
19 }
20
21 static int privileged(std::vector<std::string> /*args*/)
22 {
23   /* This version of this_actor::execute() specifies that this execution
24    * gets a larger share of the resource.
25    *
26    * Since the priority is 2, it computes twice as fast as a regular one.
27    *
28    * So instead of a half/half sharing between the two executions,
29    * we get a 1/3 vs 2/3 sharing. */
30   simgrid::s4u::this_actor::execute(98095, 2);
31   XBT_INFO("Done.");
32
33   /* Note that the timings printed when executing this example are a bit misleading,
34    * because the uneven sharing only last until the privileged actor ends.
35    * After this point, the unprivileged one gets 100% of the CPU and finishes
36    * quite quickly. */
37   return 0;
38 }
39
40 int main(int argc, char* argv[])
41 {
42   simgrid::s4u::Engine e(&argc, argv);
43   std::vector<std::string> args;
44   xbt_assert(argc > 1, "Usage: %s platform_file\n\tExample: %s msg_platform.xml\n", argv[0], argv[0]);
45
46   e.loadPlatform(argv[1]);
47
48   simgrid::s4u::Actor::create("executor", simgrid::s4u::Host::by_name("Tremblay"), executor, args);
49   simgrid::s4u::Actor::create("privileged", simgrid::s4u::Host::by_name("Tremblay"), privileged, args);
50
51   e.run();
52
53   return 0;
54 }