hotspot/src/os/windows/vm/os_windows.cpp
changeset 25354 f6762819b488
parent 25351 7c198a690050
parent 25333 078d0ef28601
child 25468 5331df506290
--- a/hotspot/src/os/windows/vm/os_windows.cpp	Mon Jun 23 14:20:20 2014 -0700
+++ b/hotspot/src/os/windows/vm/os_windows.cpp	Wed Jun 25 20:41:16 2014 -0700
@@ -3527,11 +3527,6 @@
 
 void os::yield() {  os::NakedYield(); }
 
-void os::yield_all() {
-  // Yields to all threads, including threads with lower priorities
-  Sleep(1);
-}
-
 // Win32 only gives you access to seven real priorities at a time,
 // so we compress Java's ten down to seven.  It would be better
 // if we dynamically adjusted relative priorities.