Merge
authordholmes
Tue, 02 Feb 2016 04:48:05 +0100
changeset 35904 ff8da306923e
parent 35903 049dfbdc3ced (current diff)
parent 35902 c194dfa0a187 (diff)
child 35905 7a7ad93cf358
Merge
--- a/hotspot/src/share/vm/gc/g1/concurrentMark.cpp	Fri Jan 29 09:21:15 2016 +0100
+++ b/hotspot/src/share/vm/gc/g1/concurrentMark.cpp	Tue Feb 02 04:48:05 2016 +0100
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2001, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2001, 2015, 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
@@ -489,11 +489,11 @@
     double overall_cm_overhead =
       (double) MaxGCPauseMillis * marking_overhead /
       (double) GCPauseIntervalMillis;
-    double cpu_ratio = 1.0 / (double) os::active_processor_count();
+    double cpu_ratio = 1.0 / (double) os::processor_count();
     double marking_thread_num = ceil(overall_cm_overhead / cpu_ratio);
     double marking_task_overhead =
       overall_cm_overhead / marking_thread_num *
-                                              (double) os::active_processor_count();
+                                              (double) os::processor_count();
     double sleep_factor =
                        (1.0 - marking_task_overhead) / marking_task_overhead;
 
--- a/hotspot/src/share/vm/gc/g1/dirtyCardQueue.cpp	Fri Jan 29 09:21:15 2016 +0100
+++ b/hotspot/src/share/vm/gc/g1/dirtyCardQueue.cpp	Tue Feb 02 04:48:05 2016 +0100
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2001, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2001, 2015, 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
@@ -160,7 +160,7 @@
 
 // Determines how many mutator threads can process the buffers in parallel.
 uint DirtyCardQueueSet::num_par_ids() {
-  return (uint)os::active_processor_count();
+  return (uint)os::processor_count();
 }
 
 void DirtyCardQueueSet::initialize(CardTableEntryClosure* cl,