hotspot/src/os/windows/vm/os_windows.cpp
OSReturn os::set_native_priority(Thread* thread, int priority) {
{- -------------------------------------------
(1) SetThreadPriority() システムコールで優先度を変更する.
(ただし, UseThreadPriorities オプションが指定されていない場合には, 何もしない)
---------------------------------------- -}
if (!UseThreadPriorities) return OS_OK;
bool ret = SetThreadPriority(thread->osthread()->thread_handle(), priority) != 0;
return ret ? OS_OK : OS_ERR;
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.