< prev index next >

src/share/vm/gc/shared/generationSpec.hpp

Print this page
rev 8362 : [mq]: hotspot

*** 20,33 **** * or visit www.oracle.com if you need additional information or have any * questions. * */ ! #ifndef SHARE_VM_MEMORY_GENERATIONSPEC_HPP ! #define SHARE_VM_MEMORY_GENERATIONSPEC_HPP ! #include "memory/generation.hpp" // The specification of a generation. This class also encapsulates // some generation-specific behavior. This is done here rather than as a // virtual function of Generation because these methods are needed in // initialization of the Generations. --- 20,33 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ ! #ifndef SHARE_VM_GC_SHARED_GENERATIONSPEC_HPP ! #define SHARE_VM_GC_SHARED_GENERATIONSPEC_HPP ! #include "gc/shared/generation.hpp" // The specification of a generation. This class also encapsulates // some generation-specific behavior. This is done here rather than as a // virtual function of Generation because these methods are needed in // initialization of the Generations.
*** 55,60 **** void set_max_size(size_t size) { _max_size = size; } }; typedef GenerationSpec* GenerationSpecPtr; ! #endif // SHARE_VM_MEMORY_GENERATIONSPEC_HPP --- 55,60 ---- void set_max_size(size_t size) { _max_size = size; } }; typedef GenerationSpec* GenerationSpecPtr; ! #endif // SHARE_VM_GC_SHARED_GENERATIONSPEC_HPP
< prev index next >