8134626: Misc cleanups after generation array removal

Reviewed-by: david, dholmes, tschatzl
This commit is contained in:
Jesper Wilhelmsson 2015-08-18 21:32:21 +02:00
parent c166f75b22
commit 49fb91407d
40 changed files with 653 additions and 702 deletions

View file

@ -160,17 +160,17 @@ class StealTask : public GCTask {
class OldToYoungRootsTask : public GCTask {
private:
PSOldGen* _gen;
PSOldGen* _old_gen;
HeapWord* _gen_top;
uint _stripe_number;
uint _stripe_total;
public:
OldToYoungRootsTask(PSOldGen *gen,
OldToYoungRootsTask(PSOldGen *old_gen,
HeapWord* gen_top,
uint stripe_number,
uint stripe_total) :
_gen(gen),
_old_gen(old_gen),
_gen_top(gen_top),
_stripe_number(stripe_number),
_stripe_total(stripe_total) { }