X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b6fcc4129a6eee8ac3e7e7db57062b6a5dd8bf51..290104ced7828265239183fa04c2da15a6f28af2:/src/surf/virtual_machine.hpp diff --git a/src/surf/virtual_machine.hpp b/src/surf/virtual_machine.hpp index 0bdad3a93a..47ad8c5881 100644 --- a/src/surf/virtual_machine.hpp +++ b/src/surf/virtual_machine.hpp @@ -72,12 +72,12 @@ public: virtual void restore(); /** @brief Migrate the VM to the destination host */ - virtual void migrate(sg_host_t dest_PM)=0; + virtual void migrate(sg_host_t dest_PM); /** @brief Get the physical machine hosting the VM */ sg_host_t getPm(); - virtual void setBound(double bound)=0; + virtual void setBound(double bound); /* The vm object of the lower layer */ CpuAction *action_ = nullptr; @@ -105,8 +105,8 @@ protected: */ class VMModel : public HostModel { public: - VMModel() :HostModel(){} - ~VMModel(){}; + VMModel() :HostModel() {} + ~VMModel() = default; /** * @brief Create a new VM @@ -114,8 +114,12 @@ public: * @param name The name of the new VM * @param host_PM The real machine hosting the VM */ - virtual s4u::Host *createVM(const char *name, sg_host_t host_PM)=0; - void adjustWeightOfDummyCpuActions() {}; + s4u::Host *createVM(const char *name, sg_host_t host_PM); + void adjustWeightOfDummyCpuActions() override {}; + + double next_occuring_event(double now) override; + void updateActionsState(double /*now*/, double /*delta*/) override {}; + }; }