mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
8208671: Runtime, JFR, Serviceability changes to allow enabling -Wreorder
Reviewed-by: dholmes, hseigel
This commit is contained in:
parent
e98c176026
commit
9c0720b156
61 changed files with 129 additions and 129 deletions
|
@ -48,8 +48,8 @@ class ConcurrentHashTable<VALUE, CONFIG, F>::BucketsOperation {
|
|||
bool _is_mt;
|
||||
|
||||
BucketsOperation(ConcurrentHashTable<VALUE, CONFIG, F>* cht, bool is_mt = false)
|
||||
: _cht(cht), _is_mt(is_mt), _next_to_claim(0), _task_size_log2(DEFAULT_TASK_SIZE_LOG2),
|
||||
_stop_task(0), _size_log2(0) {}
|
||||
: _cht(cht), _next_to_claim(0), _task_size_log2(DEFAULT_TASK_SIZE_LOG2),
|
||||
_stop_task(0), _size_log2(0), _is_mt(is_mt) {}
|
||||
|
||||
// Returns true if you succeeded to claim the range start -> (stop-1).
|
||||
bool claim(size_t* start, size_t* stop) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue