X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b62a0deab582f506ac9733726e0fc81e0097d97f..da64c6383731d10c6174f81b4b6a20ff0ea186ae:/src/kernel/activity/CommImpl.cpp diff --git a/src/kernel/activity/CommImpl.cpp b/src/kernel/activity/CommImpl.cpp index 4c1deb7cb5..5615d87cfc 100644 --- a/src/kernel/activity/CommImpl.cpp +++ b/src/kernel/activity/CommImpl.cpp @@ -20,10 +20,25 @@ 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; -std::function CommImpl::copy_data_callback_ = &s4u::Comm::copy_pointer_callback; +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) { + xbt_assert((buff_size == sizeof(void*)), "Cannot copy %zu bytes: must be sizeof(void*)", buff_size); + *(void**)(comm->dst_buff_) = buff; +}; void CommImpl::set_copy_data_callback(const std::function& callback) { @@ -107,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. */ @@ -129,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()); @@ -467,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)