Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
drop unimplementd VM methods: save/restore
[simgrid.git] / src / plugins / vm / VirtualMachineImpl.hpp
index 387aaa0..82b3d9e 100644 (file)
@@ -63,19 +63,16 @@ public:
   ~VirtualMachineImpl();
 
   /** @brief Suspend the VM */
-  virtual void suspend();
+  virtual void suspend(smx_actor_t issuer);
 
   /** @brief Resume the VM */
   virtual void resume();
 
-  /** @brief Save the VM (Not yet implemented) */
-  virtual void save();
+  /** @brief Shutdown the VM */
+  virtual void shutdown(smx_actor_t issuer);
 
-  /** @brief Restore the VM (Not yet implemented) */
-  virtual void restore();
-
-  /** @brief Migrate the VM to the destination host */
-  virtual void migrate(s4u::Host* dest);
+  /** @brief Change the physical host on which the given VM is running */
+  virtual void setPm(s4u::Host* dest);
 
   /** @brief Get the physical machine hosting the VM */
   s4u::Host* getPm();