hotspot/src/os/windows/vm/os_windows.cpp
changeset 23868 ac74f81a5157
parent 23527 397b6816032d
parent 23865 ba4aeedb2a9f
child 24236 02c0f8873a3c
--- a/hotspot/src/os/windows/vm/os_windows.cpp	Fri Apr 04 10:04:44 2014 -0700
+++ b/hotspot/src/os/windows/vm/os_windows.cpp	Sat Apr 05 05:55:05 2014 -0700
@@ -3518,7 +3518,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);
 }
@@ -3864,12 +3864,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());