--- old/src/share/vm/gc/shared/workerManager.hpp 2016-07-20 13:16:02.072290534 -0700 +++ new/src/share/vm/gc/shared/workerManager.hpp 2016-07-20 13:16:01.960290538 -0700 @@ -47,11 +47,11 @@ // threads and a failure would not be optimal but should not be fatal. template static uint add_workers (WorkerType* holder, - uint active_workers, - uint total_workers, - uint created_workers, - os::ThreadType worker_type, - bool initializing) { + uint active_workers, + uint total_workers, + uint created_workers, + os::ThreadType worker_type, + bool initializing) { uint start = created_workers; uint end = MIN2(active_workers, total_workers); for (uint worker_id = start; worker_id < end; worker_id += 1) { @@ -61,8 +61,8 @@ } if (new_worker == NULL || !os::create_thread(new_worker, worker_type)) { log_trace(gc, task)("WorkerManager::add_workers() : " - "creation failed due to failed allocation of native %s", - new_worker == NULL ? "memory" : "thread"); + "creation failed due to failed allocation of native %s", + new_worker == NULL ? "memory" : "thread"); if (new_worker != NULL) { delete new_worker; } @@ -76,7 +76,7 @@ } log_trace(gc, task)("WorkerManager::add_workers() : " - "created_workers: %u", created_workers); + "created_workers: %u", created_workers); return created_workers; }