X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/09ab5b7ae5a61d700cec43f092026d536055f6c3..b9d2f7277242a82702b73e4ccdf63aec98855b5e:/include/simgrid/s4u/VirtualMachine.hpp diff --git a/include/simgrid/s4u/VirtualMachine.hpp b/include/simgrid/s4u/VirtualMachine.hpp index c999f9658d..a655e4905e 100644 --- a/include/simgrid/s4u/VirtualMachine.hpp +++ b/include/simgrid/s4u/VirtualMachine.hpp @@ -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 @@ -48,6 +48,7 @@ public: void start(); void suspend(); void resume(); + void shutdown(); bool isMigrating(); @@ -56,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();