X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e33beb98eb2dd42717306a77a328c9d5e9a91f05..0f6a14a19174c4a63f68a219be678bcdb8f85707:/src/plugins/vm/VirtualMachineImpl.hpp diff --git a/src/plugins/vm/VirtualMachineImpl.hpp b/src/plugins/vm/VirtualMachineImpl.hpp index 56c0adefed..8f27c16fba 100644 --- a/src/plugins/vm/VirtualMachineImpl.hpp +++ b/src/plugins/vm/VirtualMachineImpl.hpp @@ -1,10 +1,10 @@ -/* Copyright (c) 2004-2018. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2004-2019. 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. */ #include "simgrid/s4u/VirtualMachine.hpp" -#include "src/simix/ActorImpl.hpp" +#include "src/kernel/actor/ActorImpl.hpp" #include "src/surf/HostImpl.hpp" #include #include @@ -13,9 +13,6 @@ #ifndef VM_INTERFACE_HPP_ #define VM_INTERFACE_HPP_ -#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. - namespace simgrid { namespace vm { @@ -34,12 +31,10 @@ public: explicit VirtualMachineImpl(s4u::VirtualMachine* piface, s4u::Host* host, int core_amount, size_t ramsize); ~VirtualMachineImpl(); - /** @brief Callbacks fired after VM creation. Signature: `void(VirtualMachineImpl*)` */ - static xbt::signal on_creation; - /** @brief Callbacks fired after VM destruction. Signature: `void(VirtualMachineImpl*)` */ - static xbt::signal on_destruction; - /** @brief Callbacks after VM State changes. Signature: `void(VirtualMachineImpl*)` */ - static xbt::signal on_state_change; + /** @brief Callbacks fired after VM creation. Signature: `void(VirtualMachineImpl&)` */ + static xbt::signal on_creation; + /** @brief Callbacks fired after VM destruction. Signature: `void(VirtualMachineImpl const&)` */ + static xbt::signal on_destruction; virtual void suspend(kernel::actor::ActorImpl* issuer); virtual void resume(); @@ -87,8 +82,13 @@ class XBT_PRIVATE VMModel : public surf::HostModel { public: VMModel(); - double next_occuring_event(double now) override; + double next_occurring_event(double now) override; void update_actions_state(double /*now*/, double /*delta*/) override{}; + kernel::resource::Action* execute_parallel(const std::vector& host_list, const double* flops_amount, + const double* bytes_amount, double rate) override + { + return nullptr; + }; }; } }