Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
s/fullduplex/splitduplex/ in platform parsing (backward compatible, with a warning)
[simgrid.git] / examples / s4u / async-wait / s4u-async-wait.cpp
index d712f92..f7b1968 100644 (file)
@@ -88,10 +88,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<std::string*>(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;
     }