Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Obey some of our coding standard
[simgrid.git] / src / plugins / host_dvfs.cpp
index 2232332b1e03f8053fae98d36438ca3041050410..8082018af36c78792ca764229ab62e1eb47fc1b4 100644 (file)
@@ -304,12 +304,11 @@ public:
     });
     // FIXME I think that this fires at the same time for all hosts, so when the src sends something,
     // the dst will be notified even though it didn't even arrive at the recv yet
-    simgrid::s4u::Link::on_communicate.connect(
-        [this](const kernel::resource::NetworkAction&, const s4u::Host* src, const s4u::Host* dst) {
-          if ((get_host() == src || get_host() == dst) && iteration_running) {
-            post_task();
-          }
-        });
+    simgrid::s4u::Link::on_communicate.connect([this](const kernel::resource::NetworkAction& act) {
+      if ((get_host() == &act.get_src() || get_host() == &act.get_dst()) && iteration_running) {
+        post_task();
+      }
+    });
   }
 
   std::string get_name() const override { return "Adagio"; }
@@ -415,7 +414,7 @@ static void on_host_added(simgrid::s4u::Host& host)
       }
     }();
 
-    while (1) {
+    while (true) {
       // Sleep *before* updating; important for startup (i.e., t = 0).
       // In the beginning, we want to go with the pstates specified in the platform file
       // (so we sleep first)