mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 22:34:27 +02:00
8202021: Improve variable naming in ReferenceProcesso
Reviewed-by: sangheki, sjohanss
This commit is contained in:
parent
73771f97e9
commit
deb5bf745f
14 changed files with 111 additions and 112 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -51,9 +51,9 @@ DiscoveredListIterator::DiscoveredListIterator(DiscoveredList& refs_list,
|
|||
OopClosure* keep_alive,
|
||||
BoolObjectClosure* is_alive):
|
||||
_refs_list(refs_list),
|
||||
_prev_next(refs_list.adr_head()),
|
||||
_prev(NULL),
|
||||
_ref(refs_list.head()),
|
||||
_prev_discovered_addr(refs_list.adr_head()),
|
||||
_prev_discovered(NULL),
|
||||
_current_discovered(refs_list.head()),
|
||||
#ifdef ASSERT
|
||||
_first_seen(refs_list.head()),
|
||||
#endif
|
||||
|
@ -61,7 +61,7 @@ DiscoveredListIterator::DiscoveredListIterator(DiscoveredList& refs_list,
|
|||
_processed(0),
|
||||
_removed(0),
|
||||
#endif
|
||||
_next(NULL),
|
||||
_next_discovered(NULL),
|
||||
_keep_alive(keep_alive),
|
||||
_is_alive(is_alive) {
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue