Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
docker: new simgrid/build-deps image, and use it on gitlab-ci/circleci
[simgrid.git] / 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);
     });
   }