< prev index next >

src/share/vm/services/memoryPool.hpp

Print this page
rev 11778 : [mq]: service.patch

@@ -176,27 +176,10 @@
 
   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);
< prev index next >