Skip to content

Commit

Permalink
8328272: [AIX] Use flag kind "diagnostic" for platform specific flags
Browse files Browse the repository at this point in the history
Reviewed-by: mdoerr, stuefe
  • Loading branch information
Joachim Kern authored and TheRealMDoerr committed Mar 22, 2024
1 parent e669d14 commit b334a8e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/hotspot/os/aix/globals_aix.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
/* via shmctl). */ \
/* Per default we quit with an error if that variable is found; for certain */ \
/* customer scenarios, we may want to be able to run despite that variable. */ \
product(bool, AllowExtshm, false, \
product(bool, AllowExtshm, false, DIAGNOSTIC, \
"Allow VM to run with EXTSHM=ON.") \
\
/* Maximum expected size of the data segment. That correlates with the */ \
Expand All @@ -59,17 +59,17 @@
"Maximum expected Data Segment Size.") \
\
/* Use optimized addresses for the polling page. */ \
product(bool, OptimizePollingPageLocation, true, \
product(bool, OptimizePollingPageLocation, true, DIAGNOSTIC, \
"Optimize the location of the polling page used for Safepoints") \
\
/* Use 64K pages for virtual memory (shmat). */ \
product(bool, Use64KPages, true, \
product(bool, Use64KPages, true, DIAGNOSTIC, \
"Use 64K pages if available.") \
\
/* Normally AIX commits memory on touch, but sometimes it is helpful to have */ \
/* explicit commit behaviour. This flag, if true, causes the VM to touch */ \
/* memory on os::commit_memory() (which normally is a noop). */ \
product(bool, UseExplicitCommit, false, \
product(bool, UseExplicitCommit, false, DIAGNOSTIC, \
"Explicit commit for virtual memory.")

// end of RUNTIME_OS_FLAGS
Expand Down

1 comment on commit b334a8e

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.