X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e94c2a7fc81a82998524aa55db075be69990d4ea..c0c7607cc0cb97760a59eb3f40481fbe9469cc0a:/examples/s4u/async-waitall/s4u-async-waitall.cpp diff --git a/examples/s4u/async-waitall/s4u-async-waitall.cpp b/examples/s4u/async-waitall/s4u-async-waitall.cpp index f49f7bff88..141d7498dc 100644 --- a/examples/s4u/async-waitall/s4u-async-waitall.cpp +++ b/examples/s4u/async-waitall/s4u-async-waitall.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2010-2018. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2010-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. */ @@ -6,7 +6,7 @@ /* This example shows how to block on the completion of a set of communications. * * As for the other asynchronous examples, the sender initiate all the messages it wants to send and - * pack the resulting simgrid::s4u::CommPtr objects in a vector. All messages thus occurs concurrently. + * pack the resulting simgrid::s4u::CommPtr objects in a vector. All messages thus occur concurrently. * * The sender then blocks until all ongoing communication terminate, using simgrid::s4u::Comm::wait_all() * @@ -17,12 +17,12 @@ #include #include -XBT_LOG_NEW_DEFAULT_CATEGORY(msg_async_waitall, "Messages specific for this s4u example"); +XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_async_waitall, "Messages specific for this s4u example"); class Sender { - long messages_count; /* - number of tasks */ + long messages_count; /* - number of messages */ long receivers_count; /* - number of receivers */ - double msg_size; /* - communication cost in bytes */ + double msg_size; /* - message size in bytes */ public: explicit Sender(std::vector args) @@ -39,7 +39,7 @@ public: std::vector pending_comms; /* Make a vector of the mailboxes to use */ - std::vector mboxes; + std::vector mboxes; for (int i = 0; i < receivers_count; i++) mboxes.push_back(simgrid::s4u::Mailbox::by_name(std::string("receiver-") + std::to_string(i))); // sphinx-doc: init-end @@ -47,7 +47,7 @@ public: /* Start dispatching all messages to receivers, in a round robin fashion */ for (int i = 0; i < messages_count; i++) { std::string msg_content = std::string("Message ") + std::to_string(i); - // Copy the data we send: 'msg_content' is not a stable storage location. + // Copy the data we send: the 'msg_content' variable is not a stable storage location. // It will be destroyed when this actor leaves the loop, ie before the receiver gets it std::string* payload = new std::string(msg_content); @@ -76,7 +76,7 @@ public: /* Receiver actor expects 1 argument: its ID */ class Receiver { - simgrid::s4u::MailboxPtr mbox; + simgrid::s4u::Mailbox* mbox; public: explicit Receiver(std::vector args) @@ -89,7 +89,7 @@ public: { XBT_INFO("Wait for my first message"); for (bool cont = true; cont;) { - std::string* received = static_cast(mbox->get()); + const std::string* received = static_cast(mbox->get()); XBT_INFO("I got a '%s'.", received->c_str()); cont = (*received != "finalize"); // If it's a finalize message, we're done // Receiving the message was all we were supposed to do