mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 11:34:38 +02:00
8134626: Misc cleanups after generation array removal
Reviewed-by: david, dholmes, tschatzl
This commit is contained in:
parent
c166f75b22
commit
49fb91407d
40 changed files with 653 additions and 702 deletions
|
@ -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) { }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue