X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/171293b2177631594dafc0a8449ee370aebdd305..8c753c341f0c7f6d5ea38c4cb7bf7da6f0ef0a1b:/src/surf/network_cm02.hpp diff --git a/src/surf/network_cm02.hpp b/src/surf/network_cm02.hpp index c2c3b3077c..cd576d6e94 100644 --- a/src/surf/network_cm02.hpp +++ b/src/surf/network_cm02.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2018. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2013-2019. The SimGrid Team. All rights reserved. */ /* 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. */ @@ -48,7 +48,7 @@ public: NetworkCm02Link(NetworkCm02Model* model, const std::string& name, double bandwidth, double latency, s4u::Link::SharingPolicy policy, lmm::System* system); virtual ~NetworkCm02Link() = default; - void apply_event(tmgr_trace_event_t event, double value) override; + void apply_event(kernel::profile::Event* event, double value) override; void set_bandwidth(double value) override; void set_latency(double value) override; }; @@ -58,7 +58,6 @@ public: **********/ class NetworkCm02Action : public NetworkAction { friend Action* NetworkCm02Model::communicate(s4u::Host* src, s4u::Host* dst, double size, double rate); - friend NetworkSmpiModel; public: NetworkCm02Action(Model* model, double cost, bool failed) : NetworkAction(model, cost, failed){};