X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/96cedde3cdbc0b8ffc3f096a1b65d021b0226f99..8c753c341f0c7f6d5ea38c4cb7bf7da6f0ef0a1b:/src/surf/cpu_interface.hpp diff --git a/src/surf/cpu_interface.hpp b/src/surf/cpu_interface.hpp index bd2bf49b4f..93bc683aec 100644 --- a/src/surf/cpu_interface.hpp +++ b/src/surf/cpu_interface.hpp @@ -10,7 +10,7 @@ #include "simgrid/kernel/resource/Resource.hpp" #include "simgrid/s4u/Host.hpp" #include "src/kernel/lmm/maxmin.hpp" -#include "src/surf/trace_mgr.hpp" +#include "src/kernel/resource/profile/trace_mgr.hpp" #include @@ -76,6 +76,8 @@ public: Cpu(simgrid::kernel::resource::Model * model, simgrid::s4u::Host * host, std::vector * speedPerPstate, int core); + Cpu(const Cpu&) = delete; + Cpu& operator=(const Cpu&) = delete; ~Cpu(); /** @@ -148,7 +150,7 @@ public: /*< @brief Setup the trace file with availability events (peak speed changes due to external load). * Trace must contain relative values (ratio between 0 and 1) */ - virtual void set_speed_trace(tmgr_trace_t trace); + virtual void set_speed_profile(kernel::profile::Profile* profile); protected: Metric speed_ = {1.0, 0, nullptr};