src/share/vm/memory/freeList.cpp

Print this page
rev 6872 : imported patch nm-hashtable

*** 32,42 **** #include "runtime/vmThread.hpp" #include "utilities/macros.hpp" #if INCLUDE_ALL_GCS #include "gc_implementation/concurrentMarkSweep/freeChunk.hpp" - #include "gc_implementation/g1/g1CodeCacheRemSet.hpp" #endif // INCLUDE_ALL_GCS // Free list. A FreeList is used to access a linked list of chunks // of space in the heap. The head and tail are maintained so that // items can be (as in the current implementation) added at the --- 32,41 ----
*** 331,337 **** template class FreeList<Metablock>; template class FreeList<Metachunk>; #if INCLUDE_ALL_GCS template class FreeList<FreeChunk>; - template class FreeList<G1CodeRootChunk>; #endif // INCLUDE_ALL_GCS --- 330,335 ----