hotspot/src/os/linux/vm/os_linux.cpp
// Mark the polling page as unreadable
void os::make_polling_page_unreadable(void) {
{- -------------------------------------------
(1) os::guard_memory() を呼んで, _polling_page をアクセス不可にする.
(なお, 基本的には失敗しないはずだが,
もし失敗したら fatal() で強制終了させている)
---------------------------------------- -}
if( !guard_memory((char*)_polling_page, Linux::page_size()) )
fatal("Could not disable polling page");
};
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.