X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9bc2f7734295810a24f98d65169f06705e3ea951..1afb6751888eb781f1fa1bc7c98b7c7338308c49:/src/plugins/vm/VmHostExt.hpp diff --git a/src/plugins/vm/VmHostExt.hpp b/src/plugins/vm/VmHostExt.hpp deleted file mode 100644 index 0a0bedbbf8..0000000000 --- a/src/plugins/vm/VmHostExt.hpp +++ /dev/null @@ -1,27 +0,0 @@ -/* Copyright (c) 2004-2016. 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 EXTENSION_ID; - virtual ~VmHostExt(); - - 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(); -}; -} -} - -#endif /* VM_HOST_INFO_HPP_ */