Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
include cleanups (mostly surf/surf.hpp)
[simgrid.git] / src / plugins / vm / VmHostExt.hpp
1 /* Copyright (c) 2004-2021. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "src/surf/HostImpl.hpp"
7
8 #ifndef VM_HOST_INFO_HPP_
9 #define VM_HOST_INFO_HPP_
10
11 namespace simgrid {
12 namespace vm {
13 /** @brief Host extension for the VMs */
14 class VmHostExt {
15 public:
16   static simgrid::xbt::Extension<simgrid::s4u::Host, VmHostExt> EXTENSION_ID;
17
18   sg_size_t ramsize = 0;    /* available ramsize (0= not taken into account) */
19   bool overcommit   = true; /* Whether the host allows overcommiting more VM than the avail ramsize allows */
20
21   static void ensureVmExtInstalled();
22 };
23 }
24 }
25
26 #endif /* VM_HOST_INFO_HPP_ */