hotspot/src/os_cpu/linux_x86/vm/os_linux_x86.cpp
size_t os::Linux::default_guard_size(os::ThreadType thr_type) {
{- -------------------------------------------
(1) JavaThread の場合には 0, そうでない場合には 1 ページ分とする.
(JavaThread の場合には HotSpot が独自のガードページを張るので, glibc のガードページは不要)
---------------------------------------- -}
// Creating guard page is very expensive. Java thread has HotSpot
// guard page, only enable glibc guard page for non-Java threads.
return (thr_type == java_thread ? 0 : page_size());
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.