X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7cf838bb4a662cb0b0d1a05e1e0497a593970817..9e34d715bca0465a05c87301f6d0238d1a516c74:/src/kernel/activity/IoImpl.cpp diff --git a/src/kernel/activity/IoImpl.cpp b/src/kernel/activity/IoImpl.cpp index d910ac9019..07dff0fd84 100644 --- a/src/kernel/activity/IoImpl.cpp +++ b/src/kernel/activity/IoImpl.cpp @@ -138,14 +138,14 @@ void IoImpl::finish() { XBT_DEBUG("IoImpl::finish() in state %s", get_state_str()); while (not simcalls_.empty()) { - simix::Simcall* simcall = simcalls_.front(); + actor::Simcall* simcall = simcalls_.front(); simcalls_.pop_front(); /* If a waitany simcall is waiting for this synchro to finish, then remove it from the other synchros in the waitany * list. Afterwards, get the position of the actual synchro in the waitany list and return it as the result of the * simcall */ - if (simcall->call_ == simix::Simcall::Type::NONE) // FIXME: maybe a better way to handle this case + if (simcall->call_ == actor::Simcall::Type::NONE) // FIXME: maybe a better way to handle this case continue; // if process handling comm is killed handle_activity_waitany(simcall);