X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/22e6546d2c6f14864cc93c4ed1470d8e8c1e2d95..381afcd031f55b4ee4ec0e8f611267749eec9282:/examples/s4u/app-masterworker/s4u-app-masterworker.cpp diff --git a/examples/s4u/app-masterworker/s4u-app-masterworker.cpp b/examples/s4u/app-masterworker/s4u-app-masterworker.cpp index 199299ae05..68d0fa84a3 100644 --- a/examples/s4u/app-masterworker/s4u-app-masterworker.cpp +++ b/examples/s4u/app-masterworker/s4u-app-masterworker.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2010-2017. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2010-2018. 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. */ @@ -33,11 +33,11 @@ public: { for (int i = 0; i < number_of_tasks; i++) { /* For each task to be executed: */ /* - Select a @ref worker in a round-robin way */ - mailbox = simgrid::s4u::Mailbox::byName(std::string("worker-") + std::to_string(i % workers_count)); + mailbox = simgrid::s4u::Mailbox::by_name(std::string("worker-") + std::to_string(i % workers_count)); - if (number_of_tasks < 10000 || i % 10000 == 0) + if (number_of_tasks < 10000 || (number_of_tasks < 100000 && i % 10000 == 0) || i % 100000 == 0) XBT_INFO("Sending \"%s\" (of %ld) to mailbox \"%s\"", (std::string("Task_") + std::to_string(i)).c_str(), - number_of_tasks, mailbox->getCname()); + number_of_tasks, mailbox->get_cname()); /* - Send the computation amount to the @ref worker */ mailbox->put(new double(comp_size), comm_size); @@ -46,7 +46,7 @@ public: XBT_INFO("All tasks have been dispatched. Let's tell everybody the computation is over."); for (int i = 0; i < workers_count; i++) { /* - Eventually tell all the workers to stop by sending a "finalize" task */ - mailbox = simgrid::s4u::Mailbox::byName(std::string("worker-") + std::to_string(i % workers_count)); + mailbox = simgrid::s4u::Mailbox::by_name(std::string("worker-") + std::to_string(i % workers_count)); mailbox->put(new double(-1.0), 0); } } @@ -62,7 +62,7 @@ public: xbt_assert(args.size() == 2, "The worker expects a single argument from the XML deployment file: " "its worker ID (its numerical rank)"); id = std::stol(args[1]); - mailbox = simgrid::s4u::Mailbox::byName(std::string("worker-") + std::to_string(id)); + mailbox = simgrid::s4u::Mailbox::by_name(std::string("worker-") + std::to_string(id)); } void operator()() @@ -89,14 +89,14 @@ int main(int argc, char* argv[]) "\tExample: %s msg_platform.xml msg_deployment.xml\n", argv[0], argv[0]); - e.loadPlatform(argv[1]); /** - Load the platform description */ - e.registerFunction("master"); - e.registerFunction("worker"); /** - Register the function to be executed by the processes */ - e.loadDeployment(argv[2]); /** - Deploy the application */ + e.load_platform(argv[1]); /* Load the platform description */ + e.register_actor("master"); /* Register the class representing the actors */ + e.register_actor("worker"); + e.load_deployment(argv[2]); /* Deploy the application */ e.run(); /** - Run the simulation */ - XBT_INFO("Simulation time %g", e.getClock()); + XBT_INFO("Simulation time %g", e.get_clock()); return 0; }