これらは, Platform MXBean 機能のためのクラス. より具体的に言うと, ParallelScavengeHeap 使用時の java.lang.management.MemoryPoolMXBean クラスの実装を担当するクラス. (See: here for details)
CollectedMemoryPool クラスの具象サブクラスの1つ.
このクラスは, ParallelScavenge 使用時の Old/Perm 領域用 (See: here for details).
((cite: hotspot/src/share/vm/services/psMemoryPool.hpp))
class PSGenerationPool : public CollectedMemoryPool {
See: here for details
CollectedMemoryPool クラスの具象サブクラスの1つ.
このクラスは, ParallelScavenge 使用時の Eden 領域用 (See: here for details).
((cite: hotspot/src/share/vm/services/psMemoryPool.hpp))
class EdenMutableSpacePool : public CollectedMemoryPool {
See: here for details
CollectedMemoryPool クラスの具象サブクラスの1つ.
このクラスは, ParallelScavenge 使用時の Survivor 領域用 (See: here for details).
((cite: hotspot/src/share/vm/services/psMemoryPool.hpp))
class SurvivorMutableSpacePool : public CollectedMemoryPool {
See: here for details
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.