Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
(crudly) deal with I/O launched by maestro
[simgrid.git] / src / surf / LinkImpl.cpp
index 43a24b2..a5a34ae 100644 (file)
@@ -3,9 +3,10 @@
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
+#include <simgrid/s4u/Engine.hpp>
+
+#include "src/kernel/EngineImpl.hpp"
 #include "src/surf/LinkImpl.hpp"
-#include "simgrid/s4u/Engine.hpp"
-#include "surf/surf.hpp"
 
 #include <numeric>
 
@@ -57,11 +58,6 @@ void LinkImpl::set_sharing_policy(s4u::Link::SharingPolicy policy, const s4u::No
   sharing_policy_ = policy;
 }
 
-s4u::Link::SharingPolicy LinkImpl::get_sharing_policy() const
-{
-  return sharing_policy_;
-}
-
 void LinkImpl::latency_check(double latency) const
 {
   static double last_warned_latency = sg_surf_precision;
@@ -88,7 +84,7 @@ void LinkImpl::turn_off()
     s4u::Link::on_state_change(piface_);
 
     const kernel::lmm::Element* elem = nullptr;
-    double now                       = surf_get_clock();
+    double now                       = EngineImpl::get_clock();
     while (const auto* var = get_constraint()->get_variable(&elem)) {
       Action* action = var->get_id();
       if (action->get_state() == Action::State::INITED || action->get_state() == Action::State::STARTED) {