X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5dfff0d610d01d61458294991d8793dc3bdbf1a7..9db79d70d969bdb58f26c689ad4f965b3d9e80cf:/src/kernel/resource/HostImpl.hpp diff --git a/src/kernel/resource/HostImpl.hpp b/src/kernel/resource/HostImpl.hpp index eda907d191..2701e3bf51 100644 --- a/src/kernel/resource/HostImpl.hpp +++ b/src/kernel/resource/HostImpl.hpp @@ -3,8 +3,8 @@ /* 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. */ -#ifndef SURF_HOST_INTERFACE_HPP -#define SURF_HOST_INTERFACE_HPP +#ifndef SIMGRID_KERNEL_HOST_INTERFACE_HPP +#define SIMGRID_KERNEL_HOST_INTERFACE_HPP #include "src/kernel/actor/ActorImpl.hpp" #include "src/kernel/resource/CpuImpl.hpp" @@ -18,8 +18,8 @@ namespace simgrid::kernel::resource { * Model * *********/ -/** @ingroup SURF_host_interface - * @brief SURF Host model interface class +/** @ingroup Model_host_interface + * @brief Host model interface class * @details A model is an object which handle the interactions between its Resources and its Actions */ class XBT_PRIVATE HostModel : public Model { @@ -36,8 +36,8 @@ public: /************ * Resource * ************/ -/** @ingroup SURF_host_interface - * @brief SURF Host interface class +/** @ingroup Model_host_interface + * @brief Host interface class * @details A host represents a machine with an aggregation of a Cpu, a RoutingEdge and Disk(s) */ class XBT_PRIVATE HostImpl : public xbt::PropertyHolder, public actor::ObjectAccessSimcallItem { @@ -49,7 +49,7 @@ class XBT_PRIVATE HostImpl : public xbt::PropertyHolder, public actor::ObjectAcc ActorList actor_list_; std::vector actors_at_boot_; s4u::Host piface_; - std::map> disks_; + std::map> disks_; std::map> vms_; std::string name_{"noname"}; routing::NetZoneImpl* englobing_zone_ = nullptr;