Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
wrong order there
authorFrederic Suter <frederic.suter@cc.in2p3.fr>
Sun, 5 Aug 2018 11:26:47 +0000 (13:26 +0200)
committerFrederic Suter <frederic.suter@cc.in2p3.fr>
Sun, 5 Aug 2018 18:54:59 +0000 (20:54 +0200)
src/s4u/s4u_Host.cpp

index 8e5edcb..e78c4eb 100644 (file)
@@ -86,8 +86,8 @@ void Host::turn_on()
 {
   if (is_off()) {
     simgrid::simix::simcall([this] {
-      this->pimpl_->turn_on();
       this->pimpl_cpu->turn_on();
+      this->pimpl_->turn_on();
       on_state_change(*this);
     });
   }