mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 23:04:50 +02:00
8081382: Make flags ParallelGCThreads and ConcGCThreads of type uint
Reviewed-by: drwhite, stefank
This commit is contained in:
parent
862b933a2e
commit
5f5af54f95
20 changed files with 97 additions and 55 deletions
|
@ -484,12 +484,12 @@ void GCTaskManager::set_active_gang() {
|
|||
|
||||
assert(!all_workers_active() || active_workers() == ParallelGCThreads,
|
||||
err_msg("all_workers_active() is incorrect: "
|
||||
"active %d ParallelGCThreads " UINTX_FORMAT, active_workers(),
|
||||
"active %d ParallelGCThreads %u", active_workers(),
|
||||
ParallelGCThreads));
|
||||
if (TraceDynamicGCThreads) {
|
||||
gclog_or_tty->print_cr("GCTaskManager::set_active_gang(): "
|
||||
"all_workers_active() %d workers %d "
|
||||
"active %d ParallelGCThreads " UINTX_FORMAT,
|
||||
"active %d ParallelGCThreads %u",
|
||||
all_workers_active(), workers(), active_workers(),
|
||||
ParallelGCThreads);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue