8202863: Rename OopStorage inner collection classes

Rename BlockArray, BlockList, BlockEntry

Reviewed-by: coleenp
This commit is contained in:
Kim Barrett 2018-05-22 03:46:52 -04:00
parent e30f2aee4f
commit 66b0c9fe9c
5 changed files with 136 additions and 136 deletions

View file

@ -36,8 +36,8 @@
//
// Concurrent Iteration
//
// Iteration involves the _active_array (a BlockArray), which contains all of
// the blocks owned by a storage object.
// Iteration involves the _active_array (an ActiveArray), which contains all
// of the blocks owned by a storage object.
//
// At most one concurrent ParState can exist at a time for a given storage
// object.
@ -140,7 +140,7 @@
class OopStorage::BasicParState {
const OopStorage* _storage;
BlockArray* _active_array;
ActiveArray* _active_array;
size_t _block_count;
volatile size_t _next_block;
uint _estimated_thread_count;