-
Enhancement
-
Resolution: Won't Fix
-
P4
-
16
ExecMem is defined in os.hpp as:
// Executable parameter flag for os::commit_memory() and
// os::commit_memory_or_exit().
const bool ExecMem = true;
and only ever used as "!ExecMem" in calls to os::commit_memory().
Maybe it did something in the past. Now it just seems to be a complicated way to say "false". So we should say "false".
// Executable parameter flag for os::commit_memory() and
// os::commit_memory_or_exit().
const bool ExecMem = true;
and only ever used as "!ExecMem" in calls to os::commit_memory().
Maybe it did something in the past. Now it just seems to be a complicated way to say "false". So we should say "false".
- relates to
-
JDK-8253890 Investigate "os::realign_memory" and the "alignment_hint" parameter for os::commit...()
-
- Closed
-
- links to
-
Review openjdk/jdk/454