Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Consider Link latency as an optional parameter
[simgrid.git] / src / s4u / s4u_Link.cpp
index 59cee96..26797d1 100644 (file)
@@ -103,6 +103,10 @@ void Link::turn_off()
 {
   simgrid::kernel::actor::simcall([this]() { this->pimpl_->turn_off(); });
 }
+void Link::seal()
+{
+  simgrid::kernel::actor::simcall([this]() { this->pimpl_->seal(); });
+}
 
 bool Link::is_on() const
 {