X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/364eee0fc6ab77fddc5437ac273527bd27711724..6ccef0a7af1ab9d024bc2e6269be292b10c448cb:/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..7e611d79ee 100644 --- a/examples/s4u/async-waitall/s4u-async-waitall.cpp +++ b/examples/s4u/async-waitall/s4u-async-waitall.cpp @@ -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; }