X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7749be177cbd7d433ec389a155efff301969c6ee..f1671393f75bd162d50e64573db72c0e80cd137f:/examples/s4u/async-waitany/s4u-async-waitany.cpp diff --git a/examples/s4u/async-waitany/s4u-async-waitany.cpp b/examples/s4u/async-waitany/s4u-async-waitany.cpp index 5c5813104c..d4ef016a4d 100644 --- a/examples/s4u/async-waitany/s4u-async-waitany.cpp +++ b/examples/s4u/async-waitany/s4u-async-waitany.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2010-2019. 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. */ @@ -25,9 +25,9 @@ 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) @@ -37,7 +37,7 @@ public: msg_size = std::stod(args[2]); receivers_count = std::stol(args[3]); } - void operator()() + void operator()() const { /* Vector in which we store all ongoing communications */ std::vector pending_comms; @@ -50,7 +50,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);