X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f3b7e5f4b4d7c87ee3e8827313ec966ea8fc8387..ccf671a80a47f0489c33fb1dc2a8aadfc28b5b88:/src/kernel/activity/ActivityImpl.cpp diff --git a/src/kernel/activity/ActivityImpl.cpp b/src/kernel/activity/ActivityImpl.cpp index 7e163b0e11..6c26b6386c 100644 --- a/src/kernel/activity/ActivityImpl.cpp +++ b/src/kernel/activity/ActivityImpl.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2021. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -40,6 +40,11 @@ double ActivityImpl::get_remaining() const return surf_action_ ? surf_action_->get_remains() : 0; } +const char* ActivityImpl::get_state_str() const +{ + return to_c_str(state_); +} + bool ActivityImpl::test() { if (state_ != State::WAITING && state_ != State::RUNNING) { @@ -75,8 +80,12 @@ void ActivityImpl::wait_for(actor::ActorImpl* issuer, double timeout) /* If the synchro is already finished then perform the error handling */ if (state_ != simgrid::kernel::activity::State::RUNNING) finish(); - else { - /* we need a sleep action (even when there is no timeout) to be notified of host failures */ + else if (timeout == 0.) { + // still running and timeout == 0 ? We need to report a timeout + state_ = simgrid::kernel::activity::State::TIMEOUT; + finish(); + } else { + /* we need a sleep action (even when the timeout is infinite) to be notified of host failures */ set_timeout(timeout); } }