Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move variable defintion out of header file.
[simgrid.git] / examples / s4u / actor-execute / s4u-actor-execute.cpp
1 /* Copyright (c) 2010-2017. 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 static int executor(std::vector<std::string> args)
9 {
10   /* this_actor::execute() tells SimGrid to pause the calling actor
11    * until its host has computed the amount of flops passed as a parameter */
12   simgrid::s4u::this_actor::execute(100);
13
14   /* This simple example does not do anything beyond that */
15   return 0;
16 }
17
18 int main(int argc, char *argv[])
19 {
20   simgrid::s4u::Engine e(&argc, argv);
21   std::vector<std::string> args;
22   xbt_assert(argc > 1, "Usage: %s platform_file\n\tExample: %s msg_platform.xml\n", argv[0], argv[0]);
23
24   e.loadPlatform(argv[1]);
25
26   simgrid::s4u::Actor::createActor("executor", simgrid::s4u::Host::by_name("Tremblay"), executor, args);
27
28   e.run();
29
30   return 0;
31 }