hotspot/src/os/windows/vm/os_windows.cpp
void os::yield_all(int attempts) {
  {- -------------------------------------------
  (1) Sleep() を呼び出すだけ.
      ---------------------------------------- -}
      // Yields to all threads, including threads with lower priorities
      Sleep(1);
    }
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.