hotspot/src/os/windows/vm/os_windows.cpp
changeset 25333 078d0ef28601
parent 25064 244218e6ec0a
child 25354 f6762819b488
--- a/hotspot/src/os/windows/vm/os_windows.cpp	Sun Jun 22 21:23:32 2014 -0400
+++ b/hotspot/src/os/windows/vm/os_windows.cpp	Mon Jun 23 06:58:26 2014 -0700
@@ -3526,11 +3526,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.