hotspot/src/os/solaris/vm/os_solaris.cpp
// guard_memory and unguard_memory only happens within stack guard pages. // Since ISM pertains only to the heap, guard and unguard memory should not /// happen with an ISM region.
bool os::guard_memory(char* addr, size_t bytes) {
{- -------------------------------------------
(1) solaris_mprotect() を呼び出すだけ.
---------------------------------------- -}
return solaris_mprotect(addr, bytes, PROT_NONE);
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.