X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/93998c2ed02609cdbf9f8039a0c6f364940df8cb..da64c6383731d10c6174f81b4b6a20ff0ea186ae:/src/kernel/activity/CommImpl.cpp diff --git a/src/kernel/activity/CommImpl.cpp b/src/kernel/activity/CommImpl.cpp index 44ec50b4fd..5615d87cfc 100644 --- a/src/kernel/activity/CommImpl.cpp +++ b/src/kernel/activity/CommImpl.cpp @@ -20,8 +20,19 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ker_network, kernel, "Kernel network-related synchronization"); namespace simgrid::kernel::activity { -xbt::signal CommImpl::on_start; -xbt::signal CommImpl::on_completion; + +unsigned CommImpl::next_id_ = 0; + +/* In stateful MC, we need to ignore some private memory that is not relevant to the application state */ +void CommImpl::setup_mc() +{ + MC_ignore(&CommImpl::next_id_, sizeof(CommImpl::next_id_)); +} + +CommImpl::CommImpl() +{ + MC_ignore((void*)&id_, sizeof(id_)); +} std::function CommImpl::copy_data_callback_ = [](kernel::activity::CommImpl* comm, void* buff, size_t buff_size) { @@ -111,6 +122,8 @@ CommImpl::~CommImpl() } else if (mbox_) { mbox_->remove(this); } + + MC_unignore((void*)&id_, sizeof(id_)); } /** @brief Starts the simulation of a communication synchro. */ @@ -133,7 +146,6 @@ CommImpl* CommImpl::start() model_action_->set_category(get_tracing_category()); set_start_time(model_action_->get_start_time()); set_state(State::RUNNING); - on_start(*this); XBT_DEBUG("Starting communication %p from '%s' to '%s' (model action: %p; state: %s)", this, from_->get_cname(), to_->get_cname(), model_action_, get_state_str()); @@ -471,7 +483,12 @@ void CommImpl::finish() XBT_DEBUG("CommImpl::finish() comm %p, state %s, src_proc %p, dst_proc %p, detached: %d", this, get_state_str(), src_actor_.get(), dst_actor_.get(), detached_); - on_completion(*this); + if (get_iface()) { + const auto& piface = static_cast(*get_iface()); + set_iface(nullptr); // reset iface to protect against multiple trigger of the on_completion signals + s4u::Comm::on_completion(piface); + piface.on_this_completion(piface); + } /* Update synchro state */ if (src_timeout_ && src_timeout_->get_state() == resource::Action::State::FINISHED)