mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-17 17:44:40 +02:00
8238160: Uniformize Parallel GC task queue variable names
Reviewed-by: kbarrett, sangheki
This commit is contained in:
parent
1d42f083c1
commit
c16040393c
7 changed files with 37 additions and 38 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2010, 2019, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2010, 2020, 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
|
||||
|
@ -70,15 +70,15 @@ public:
|
|||
};
|
||||
|
||||
inline bool ParCompactionManager::steal(int queue_num, oop& t) {
|
||||
return stack_array()->steal(queue_num, t);
|
||||
return oop_task_queues()->steal(queue_num, t);
|
||||
}
|
||||
|
||||
inline bool ParCompactionManager::steal_objarray(int queue_num, ObjArrayTask& t) {
|
||||
return _objarray_queues->steal(queue_num, t);
|
||||
return _objarray_task_queues->steal(queue_num, t);
|
||||
}
|
||||
|
||||
inline bool ParCompactionManager::steal(int queue_num, size_t& region) {
|
||||
return region_array()->steal(queue_num, region);
|
||||
return region_task_queues()->steal(queue_num, region);
|
||||
}
|
||||
|
||||
inline void ParCompactionManager::push(oop obj) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue