hotspot/src/os/linux/vm/os_linux.cpp
changeset 25354 f6762819b488
parent 25351 7c198a690050
parent 25333 078d0ef28601
child 25468 5331df506290
--- a/hotspot/src/os/linux/vm/os_linux.cpp	Mon Jun 23 14:20:20 2014 -0700
+++ b/hotspot/src/os/linux/vm/os_linux.cpp	Wed Jun 25 20:41:16 2014 -0700
@@ -3796,13 +3796,6 @@
 
 os::YieldResult os::NakedYield() { sched_yield(); return os::YIELD_UNKNOWN; }
 
-void os::yield_all() {
-  // Yields to all threads, including threads with lower priorities
-  // Threads on Linux are all with same priority. The Solaris style
-  // os::yield_all() with nanosleep(1ms) is not necessary.
-  sched_yield();
-}
-
 ////////////////////////////////////////////////////////////////////////////////
 // thread priority support