Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
mv VM shutdown to the plugin
[simgrid.git] / include / simgrid / s4u / VirtualMachine.hpp
index d736b50..a655e49 100644 (file)
@@ -27,8 +27,8 @@ namespace s4u {
  *
  * @tableofcontents
  *
- * A VM is a virtual machine that contains actors. The total computing power that the contained
- * processes can get is constrained to the virtual machine size.
+ * A VM represents a virtual machine (or a container) that hosts actors.
+ * The total computing power that the contained actors can get is constrained to the virtual machine size.
  *
  */
 XBT_PUBLIC_CLASS VirtualMachine : public s4u::Host
@@ -46,6 +46,10 @@ private:
   virtual ~VirtualMachine();
 public:
   void start();
+  void suspend();
+  void resume();
+  void shutdown();
+
   bool isMigrating();
 
   void getParameters(vm_params_t params);
@@ -53,6 +57,7 @@ public:
   simgrid::s4u::Host* getPm();
   size_t getRamsize();
   void setRamsize(size_t ramsize);
+  void setBound(double bound);
 
   e_surf_vm_state_t getState();