From: Fred Suter Date: Thu, 1 Jun 2023 22:06:23 +0000 (-0400) Subject: properly remove the old signals and prevent MC to fire Comm::on_this_completion X-Git-Tag: v3.34~75 X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/9f2dfd25486ba89c4adaa54d774092c0b9756361 properly remove the old signals and prevent MC to fire Comm::on_this_completion --- diff --git a/src/kernel/activity/CommImpl.cpp b/src/kernel/activity/CommImpl.cpp index dbf95108a5..3abb315c8c 100644 --- a/src/kernel/activity/CommImpl.cpp +++ b/src/kernel/activity/CommImpl.cpp @@ -20,8 +20,6 @@ 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_ = [](kernel::activity::CommImpl* comm, void* buff, size_t buff_size) { @@ -470,9 +468,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_); - const s4u::Comm& piface = static_cast(*this->get_iface()); - s4u::Comm::on_completion(piface); - //piface.on_this_completion(piface); + if (get_iface()) { + const auto& piface = static_cast(*get_iface()); + s4u::Comm::on_completion(piface); + if (not MC_is_active()) // MC doesn't like when we access user interface from the kernel. + piface.on_this_completion(piface); + } /* Update synchro state */ if (src_timeout_ && src_timeout_->get_state() == resource::Action::State::FINISHED) diff --git a/src/kernel/activity/CommImpl.hpp b/src/kernel/activity/CommImpl.hpp index 32fef45acf..340a19d2ff 100644 --- a/src/kernel/activity/CommImpl.hpp +++ b/src/kernel/activity/CommImpl.hpp @@ -94,8 +94,6 @@ expectations of the other side, too. See */ void* src_data_ = nullptr; /* User data associated to the communication */ void* dst_data_ = nullptr; - static xbt::signal on_start; - static xbt::signal on_completion; }; } // namespace simgrid::kernel::activity