< prev index next >

src/share/vm/services/memoryPool.hpp

Print this page
rev 12854 : [mq]: gcinterface.patch

*** 176,202 **** size_t used_in_bytes(); size_t committed_in_bytes(); }; - #if INCLUDE_ALL_GCS - class CompactibleFreeListSpacePool : public CollectedMemoryPool { - private: - CompactibleFreeListSpace* _space; - public: - CompactibleFreeListSpacePool(CompactibleFreeListSpace* space, - const char* name, - PoolType type, - size_t max_size, - bool support_usage_threshold); - - MemoryUsage get_memory_usage(); - size_t used_in_bytes(); - }; - #endif // INCLUDE_ALL_GCS - - class GenerationPool : public CollectedMemoryPool { private: Generation* _gen; public: GenerationPool(Generation* gen, const char* name, PoolType type, bool support_usage_threshold); --- 176,185 ----
< prev index next >