Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Reorganize VM code
[simgrid.git] / src / plugins / vm / VmHostExt.hpp
diff --git a/src/plugins/vm/VmHostExt.hpp b/src/plugins/vm/VmHostExt.hpp
deleted file mode 100644 (file)
index 624eb20..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-/* Copyright (c) 2004-2021. 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 "src/surf/HostImpl.hpp"
-
-#ifndef VM_HOST_INFO_HPP_
-#define VM_HOST_INFO_HPP_
-
-namespace simgrid {
-namespace vm {
-/** @brief Host extension for the VMs */
-class VmHostExt {
-public:
-  static simgrid::xbt::Extension<simgrid::s4u::Host, VmHostExt> EXTENSION_ID;
-
-  sg_size_t ramsize = 0;    /* available ramsize (0= not taken into account) */
-  bool overcommit   = true; /* Whether the host allows overcommiting more VM than the avail ramsize allows */
-
-  static void ensureVmExtInstalled();
-};
-} // namespace vm
-} // namespace simgrid
-
-#endif /* VM_HOST_INFO_HPP_ */