hotspot/src/os/windows/vm/os_windows.cpp
changeset 23865 ba4aeedb2a9f
parent 23487 0f7e268cd9e3
child 23868 ac74f81a5157
--- a/hotspot/src/os/windows/vm/os_windows.cpp	Wed Apr 02 16:08:59 2014 +0100
+++ b/hotspot/src/os/windows/vm/os_windows.cpp	Thu Apr 03 09:28:28 2014 +0000
@@ -3520,7 +3520,7 @@
 
 void os::yield() {  os::NakedYield(); }
 
-void os::yield_all(int attempts) {
+void os::yield_all() {
   // Yields to all threads, including threads with lower priorities
   Sleep(1);
 }
@@ -3866,12 +3866,6 @@
   win32::setmode_streams();
   init_page_sizes((size_t) win32::vm_page_size());
 
-  // For better scalability on MP systems (must be called after initialize_system_info)
-#ifndef PRODUCT
-  if (is_MP()) {
-    NoYieldsInMicrolock = true;
-  }
-#endif
   // This may be overridden later when argument processing is done.
   FLAG_SET_ERGO(bool, UseLargePagesIndividualAllocation,
     os::win32::is_windows_2003());