Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
surf_action_ should not be null here.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Wed, 10 Feb 2021 10:14:27 +0000 (11:14 +0100)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Wed, 10 Feb 2021 10:14:27 +0000 (11:14 +0100)
src/kernel/activity/ExecImpl.cpp

index 166d78f..382ed6e 100644 (file)
@@ -152,11 +152,12 @@ ExecImpl& ExecImpl::set_sharing_penalty(double sharing_penalty)
 
 void ExecImpl::post()
 {
+  xbt_assert(surf_action_ != nullptr);
   if (hosts_.size() == 1 && not hosts_.front()->is_on()) { /* FIXME: handle resource failure for parallel tasks too */
     /* If the host running the synchro failed, notice it. This way, the asking
      * process can be killed if it runs on that host itself */
     state_ = State::FAILED;
-  } else if (surf_action_ && surf_action_->get_state() == resource::Action::State::FAILED) {
+  } else if (surf_action_->get_state() == resource::Action::State::FAILED) {
     /* If the host running the synchro didn't fail, then the synchro was canceled */
     state_ = State::CANCELED;
   } else if (timeout_detector_ && timeout_detector_->get_state() == resource::Action::State::FINISHED) {