src/share/vm/services/memoryPool.cpp

changeset 4542
db9981fd3124
parent 4037
da91efe96a93
child 4825
dbd5837b342f
     1.1 --- a/src/share/vm/services/memoryPool.cpp	Fri Jan 18 05:33:32 2013 -0800
     1.2 +++ b/src/share/vm/services/memoryPool.cpp	Wed Jan 23 13:02:39 2013 -0500
     1.3 @@ -32,6 +32,7 @@
     1.4  #include "services/management.hpp"
     1.5  #include "services/memoryManager.hpp"
     1.6  #include "services/memoryPool.hpp"
     1.7 +#include "utilities/macros.hpp"
     1.8  
     1.9  MemoryPool::MemoryPool(const char* name,
    1.10                         PoolType type,
    1.11 @@ -208,7 +209,7 @@
    1.12    return MemoryUsage(initial_size(), used, committed, maxSize);
    1.13  }
    1.14  
    1.15 -#ifndef SERIALGC
    1.16 +#if INCLUDE_ALL_GCS
    1.17  CompactibleFreeListSpacePool::CompactibleFreeListSpacePool(CompactibleFreeListSpace* space,
    1.18                                                             const char* name,
    1.19                                                             PoolType type,
    1.20 @@ -225,7 +226,7 @@
    1.21  
    1.22    return MemoryUsage(initial_size(), used, committed, maxSize);
    1.23  }
    1.24 -#endif // SERIALGC
    1.25 +#endif // INCLUDE_ALL_GCS
    1.26  
    1.27  GenerationPool::GenerationPool(Generation* gen,
    1.28                                 const char* name,

mercurial