X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/471fea6efe44cedfedf6af1f62aa4eb9bc9c3abd..d3154c75960afc4f3fe7e53c835e35f2584ed97a:/src/surf/virtual_machine.hpp diff --git a/src/surf/virtual_machine.hpp b/src/surf/virtual_machine.hpp index c28b44dd34..40395aba17 100644 --- a/src/surf/virtual_machine.hpp +++ b/src/surf/virtual_machine.hpp @@ -6,7 +6,7 @@ #include -#include "host_interface.hpp" +#include "src/surf/HostImpl.hpp" #ifndef VM_INTERFACE_HPP_ #define VM_INTERFACE_HPP_ @@ -31,17 +31,17 @@ class XBT_PRIVATE VirtualMachine; /** @ingroup SURF_callbacks * @brief Callbacks fired after VM creation. Signature: `void(VirtualMachine*)` */ -extern XBT_PRIVATE simgrid::surf::signal VMCreatedCallbacks; +extern XBT_PRIVATE simgrid::xbt::signal VMCreatedCallbacks; /** @ingroup SURF_callbacks * @brief Callbacks fired after VM destruction. Signature: `void(VirtualMachine*)` */ -extern XBT_PRIVATE simgrid::surf::signal VMDestructedCallbacks; +extern XBT_PRIVATE simgrid::xbt::signal VMDestructedCallbacks; /** @ingroup SURF_callbacks * @brief Callbacks after VM State changes. Signature: `void(VirtualMachine*)` */ -extern XBT_PRIVATE simgrid::surf::signal VMStateChangedCallbacks; +extern XBT_PRIVATE simgrid::xbt::signal VMStateChangedCallbacks; /************ * Resource * @@ -51,7 +51,7 @@ extern XBT_PRIVATE simgrid::surf::signal V * @brief SURF VM interface class * @details A VM represent a virtual machine */ -class VirtualMachine : public Host { +class VirtualMachine : public HostImpl { public: /** * @brief Constructor @@ -59,11 +59,10 @@ public: * @param model VMModel associated to this VM * @param name The name of the VM * @param props Dictionary of properties associated to this VM - * @param netElm The RoutingEdge associated to this VM - * @param cpu The Cpu associated to this VM + * @param host The host */ VirtualMachine(simgrid::surf::HostModel *model, const char *name, xbt_dict_t props, - simgrid::Host *host); + simgrid::s4u::Host *host); /** @brief Destructor */ ~VirtualMachine(); @@ -91,7 +90,7 @@ public: /* The vm object of the lower layer */ CpuAction *p_action; - simgrid::Host *p_hostPM; + simgrid::s4u::Host *p_hostPM; void turnOn() override; void turnOff() override;