X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/364eee0fc6ab77fddc5437ac273527bd27711724..8c416e92254512408c1d0ce729e8d3cf82ec9938:/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 98ca116ac5..4d2c49c77b 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-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. */ @@ -84,10 +84,10 @@ public: void operator()() { XBT_INFO("Wait for my first message"); - for (bool done = false; not done;) { + for (bool cont = true; cont;) { std::string* received = static_cast(mbox->get()); XBT_INFO("I got a '%s'.", received->c_str()); - done = (*received == "finalize"); // If it's a finalize message, we're done + cont = (*received != "finalize"); // If it's a finalize message, we're done // Receiving the message was all we were supposed to do delete received; } @@ -102,8 +102,8 @@ int main(int argc, char *argv[]) e.registerFunction("sender"); e.registerFunction("receiver"); - e.loadPlatform(argv[1]); - e.loadDeployment(argv[2]); + e.load_platform(argv[1]); + e.load_deployment(argv[2]); e.run(); return 0;