-
Type:
Enhancement
-
Resolution: Unresolved
-
Priority:
P4
-
Affects Version/s: None
-
Component/s: hotspot
Semantically, young and old generation are part of a heap, so they shouldn't be non-static.
static PSYoungGen* _young_gen;
static PSOldGen* _old_gen;
Make and them non-static.
static PSYoungGen* _young_gen;
static PSOldGen* _old_gen;
Make and them non-static.