hotspot/src/share/vm/services/memoryPool.cpp
changeset 15482 470d0b0c09f1
parent 13728 882756847a04
child 16451 2f68393e1bef
--- a/hotspot/src/share/vm/services/memoryPool.cpp	Fri Jan 18 05:33:32 2013 -0800
+++ b/hotspot/src/share/vm/services/memoryPool.cpp	Wed Jan 23 13:02:39 2013 -0500
@@ -32,6 +32,7 @@
 #include "services/management.hpp"
 #include "services/memoryManager.hpp"
 #include "services/memoryPool.hpp"
+#include "utilities/macros.hpp"
 
 MemoryPool::MemoryPool(const char* name,
                        PoolType type,
@@ -208,7 +209,7 @@
   return MemoryUsage(initial_size(), used, committed, maxSize);
 }
 
-#ifndef SERIALGC
+#if INCLUDE_ALL_GCS
 CompactibleFreeListSpacePool::CompactibleFreeListSpacePool(CompactibleFreeListSpace* space,
                                                            const char* name,
                                                            PoolType type,
@@ -225,7 +226,7 @@
 
   return MemoryUsage(initial_size(), used, committed, maxSize);
 }
-#endif // SERIALGC
+#endif // INCLUDE_ALL_GCS
 
 GenerationPool::GenerationPool(Generation* gen,
                                const char* name,