Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Apply the default settings of 'smpi/buffering' too
[simgrid.git] / src / plugins / vm / VmHostExt.hpp
1 /* Copyright (c) 2004-2019. 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   virtual ~VmHostExt() = default;
18
19   sg_size_t ramsize = 0;    /* available ramsize (0= not taken into account) */
20   bool overcommit   = true; /* Whether the host allows overcommiting more VM than the avail ramsize allows */
21
22   static void ensureVmExtInstalled();
23 };
24 }
25 }
26
27 #endif /* VM_HOST_INFO_HPP_ */