Top


定義場所(file name)

hotspot/src/os/windows/vm/os_windows.cpp

名前(function name)

bool os::guard_memory(char* addr, size_t bytes) {

本体部(body)

  {- -------------------------------------------
  (1) VirtualProtect() を呼び出すだけ.
      ---------------------------------------- -}

      DWORD old_status;
      return VirtualProtect(addr, bytes, PAGE_READWRITE | PAGE_GUARD, &old_status) != 0;
    }

This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.