Top

ParallelScavengeHeap 用の MemoryPool クラス (PSGenerationPool, EdenMutableSpacePool, SurvivorMutableSpacePool)

これらは, Platform MXBean 機能のためのクラス. より具体的に言うと, ParallelScavengeHeap 使用時の java.lang.management.MemoryPoolMXBean クラスの実装を担当するクラス. (See: here for details)

クラス一覧(class list)


PSGenerationPool

概要(Summary)

CollectedMemoryPool クラスの具象サブクラスの1つ.

このクラスは, ParallelScavenge 使用時の Old/Perm 領域用 (See: here for details).

    ((cite: hotspot/src/share/vm/services/psMemoryPool.hpp))
    class PSGenerationPool : public CollectedMemoryPool {

詳細(Details)

See: here for details


EdenMutableSpacePool

概要(Summary)

CollectedMemoryPool クラスの具象サブクラスの1つ.

このクラスは, ParallelScavenge 使用時の Eden 領域用 (See: here for details).

    ((cite: hotspot/src/share/vm/services/psMemoryPool.hpp))
    class EdenMutableSpacePool : public CollectedMemoryPool {

詳細(Details)

See: here for details


SurvivorMutableSpacePool

概要(Summary)

CollectedMemoryPool クラスの具象サブクラスの1つ.

このクラスは, ParallelScavenge 使用時の Survivor 領域用 (See: here for details).

    ((cite: hotspot/src/share/vm/services/psMemoryPool.hpp))
    class SurvivorMutableSpacePool : public CollectedMemoryPool {

詳細(Details)

See: here for details



This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.