X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8f606525aaba6b44e0e2d9059c6d60dbf479598f..d426ea0d62bcfe4e7d92f5ff6cb5d66bdc0e567d:/src/plugins/vm/VirtualMachineImpl.hpp diff --git a/src/plugins/vm/VirtualMachineImpl.hpp b/src/plugins/vm/VirtualMachineImpl.hpp index 1063bf1ff8..026071ea97 100644 --- a/src/plugins/vm/VirtualMachineImpl.hpp +++ b/src/plugins/vm/VirtualMachineImpl.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2004-2016. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2004-2017. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -16,7 +16,7 @@ #define GUESTOS_NOISE 100 // This value corresponds to the cost of the global action associated to the VM // It corresponds to the cost of a VM running no tasks. -typedef struct dirty_page* dirty_page_t; +typedef struct s_dirty_page* dirty_page_t; namespace simgrid { namespace vm { @@ -93,10 +93,6 @@ public: int dp_enabled = 0; double dp_updated_by_deleted_tasks = 0; -protected: - simgrid::s4u::Host* hostPM_; - -public: e_surf_vm_state_t getState(); void setState(e_surf_vm_state_t state); static std::deque allVms_; @@ -105,10 +101,9 @@ public: bool isMigrating = false; private: + simgrid::s4u::Host* hostPM_; s_vm_params_t params_; int coreAmount_; - -protected: e_surf_vm_state_t vmState_ = SURF_VM_STATE_CREATED; }; @@ -121,6 +116,7 @@ protected: */ class VMModel : public surf::HostModel { public: + VMModel(); void ignoreEmptyVmInPmLMM() override{}; double nextOccuringEvent(double now) override;