X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/fce09c24b85088743448b2bd504833a3b33937f3..eb92e377b2afbcdaae55d0819b5c226091d25d49:/src/surf/cpu_interface.hpp diff --git a/src/surf/cpu_interface.hpp b/src/surf/cpu_interface.hpp index 4b273c70a5..10a4cf4e11 100644 --- a/src/surf/cpu_interface.hpp +++ b/src/surf/cpu_interface.hpp @@ -10,7 +10,6 @@ #include "simgrid/kernel/resource/Resource.hpp" #include "simgrid/s4u/Host.hpp" #include "src/kernel/lmm/maxmin.hpp" -#include "src/kernel/resource/profile/trace_mgr.hpp" #include @@ -48,6 +47,8 @@ public: * Resource * ************/ +class CpuAction; + /** @ingroup SURF_cpu_interface * @brief SURF cpu resource interface class * @details A Cpu represent a cpu associated to a host @@ -90,7 +91,7 @@ public: * @param size The value of the processing amount (in flop) needed to process * @return The CpuAction corresponding to the processing */ - virtual Action* execution_start(double size) = 0; + virtual CpuAction* execution_start(double size) = 0; /** * @brief Execute some quantity of computation on more than one core @@ -99,7 +100,7 @@ public: * @param requested_cores The desired amount of cores. Must be >= 1 * @return The CpuAction corresponding to the processing */ - virtual Action* execution_start(double size, int requested_cores) = 0; + virtual CpuAction* execution_start(double size, int requested_cores) = 0; /** * @brief Make a process sleep for duration (in seconds) @@ -107,7 +108,7 @@ public: * @param duration The number of seconds to sleep * @return The CpuAction corresponding to the sleeping */ - virtual Action* sleep(double duration) = 0; + virtual CpuAction* sleep(double duration) = 0; /** @brief Get the amount of cores */ virtual int get_core_count();