]> AND Public Git Repository - simgrid.git/blobdiff - src/kernel/activity/SleepImpl.cpp
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Don't give actors a chance to survive their exec if their host is turned off
[simgrid.git] / src / kernel / activity / SleepImpl.cpp
index f666d03dcf0a02d67b68b00fac739db1c570d268..25ff77d00083199c376a1889b441035753dce05b 100644 (file)
@@ -8,8 +8,6 @@
 #include "simgrid/kernel/resource/Action.hpp"
 #include "simgrid/s4u/Host.hpp"
 #include "src/kernel/context/Context.hpp"
-
-#include "simgrid/Exception.hpp"
 #include "src/simix/ActorImpl.hpp"
 #include "src/simix/popping_private.hpp"
 #include "src/simix/smx_private.hpp"
@@ -62,14 +60,13 @@ void SleepImpl::post()
 
       default:
         THROW_IMPOSSIBLE;
-        break;
     }
-    if (not simcall->issuer->host_->is_on()) {
+    if (not simcall->issuer->get_host()->is_on()) {
       simcall->issuer->context_->iwannadie = true;
     }
     simcall_process_sleep__set__result(simcall, result);
     simcall->issuer->waiting_synchro = nullptr;
-    if (simcall->issuer->suspended_) {
+    if (simcall->issuer->is_suspended()) {
       XBT_DEBUG("Wait! This process is suspended and can't wake up now.");
       simcall->issuer->suspended_ = false;
       simcall_HANDLER_process_suspend(simcall, simcall->issuer);
@@ -80,7 +77,10 @@ void SleepImpl::post()
 
   SIMIX_process_sleep_destroy(this);
 }
-
+void SleepImpl::finish()
+{
+  /* FIXME some part of post should move to finish */
+}
 } // namespace activity
 } // namespace kernel
 } // namespace simgrid