hotspot/src/os/solaris/vm/os_solaris.inline.hpp
inline bool os::allocate_stack_guard_pages() {
{- -------------------------------------------
(1) thr_main() を呼び出し, その結果をそのままリターンするだけ.
(なので, メインスレッドなら true, そうでなければ false がリターンされる)
---------------------------------------- -}
assert(uses_stack_guard_pages(), "sanity check");
int r = thr_main() ;
guarantee (r == 0 || r == 1, "CR6501650 or CR6493689") ;
return r;
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.