Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Expose MailboxImpl::clear() to improve handling of node faults
[simgrid.git] / src / s4u / s4u_Mailbox.cpp
index fd5a442..d692395 100644 (file)
@@ -129,11 +129,16 @@ CommPtr Mailbox::get_init()
 }
 
 kernel::activity::ActivityImplPtr
-Mailbox::iprobe(int type, bool (*match_fun)(void*, void*, kernel::activity::CommImpl*), void* data)
+Mailbox::iprobe(int type, const std::function<bool(void*, void*, kernel::activity::CommImpl*)>& match_fun, void* data)
 {
   return kernel::actor::simcall_answered(
-      [this, type, match_fun, data] { return pimpl_->iprobe(type, match_fun, data); });
+      [this, type, &match_fun, data] { return pimpl_->iprobe(type, match_fun, data); });
 }
+
+void Mailbox::clear() {
+  pimpl_->clear();
+}
+
 } // namespace s4u
 } // namespace simgrid