src/share/vm/memory/generation.hpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1997, 2009, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 20,29 **** --- 20,42 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef SHARE_VM_MEMORY_GENERATION_HPP + #define SHARE_VM_MEMORY_GENERATION_HPP + + #include "gc_implementation/shared/collectorCounters.hpp" + #include "memory/allocation.hpp" + #include "memory/memRegion.hpp" + #include "memory/referenceProcessor.hpp" + #include "memory/universe.hpp" + #include "memory/watermark.hpp" + #include "runtime/mutex.hpp" + #include "runtime/perfData.hpp" + #include "runtime/virtualspace.hpp" + // A Generation models a heap area for similarly-aged objects. // It will contain one ore more spaces holding the actual objects. // // The Generation class hierarchy: //
*** 732,736 **** --- 745,751 ---- virtual void record_spaces_top(); virtual void verify(bool allow_dirty); virtual void print_on(outputStream* st) const; }; + + #endif // SHARE_VM_MEMORY_GENERATION_HPP