src/share/vm/runtime/globals.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File hotspot-rt-fx60 Cdiff src/share/vm/runtime/globals.hpp

src/share/vm/runtime/globals.hpp

Print this page

        

*** 3475,3494 **** " used with care, as sometimes it can cause performance "\ " degradation in the application and/or the entire system. On "\ " Linux this policy requires root privilege.") \ \ product(bool, ThreadPriorityVerbose, false, \ ! "print priority changes") \ \ product(intx, DefaultThreadPriority, -1, \ ! "what native priority threads run at if not specified elsewhere (-1 means no change)") \ \ product(intx, CompilerThreadPriority, -1, \ ! "what priority should compiler threads run at (-1 means no change)") \ \ product(intx, VMThreadPriority, -1, \ ! "what priority should VM threads run at (-1 means no change)") \ \ product(bool, CompilerThreadHintNoPreempt, true, \ "(Solaris only) Give compiler threads an extra quanta") \ \ product(bool, VMThreadHintNoPreempt, false, \ --- 3475,3497 ---- " used with care, as sometimes it can cause performance "\ " degradation in the application and/or the entire system. On "\ " Linux this policy requires root privilege.") \ \ product(bool, ThreadPriorityVerbose, false, \ ! "Print priority changes") \ \ product(intx, DefaultThreadPriority, -1, \ ! "What native priority threads run at if not specified elsewhere " \ ! "(-1 means no change)") \ \ product(intx, CompilerThreadPriority, -1, \ ! "What native priority should compiler threads run at " \ ! "(-1 means no change)") \ \ product(intx, VMThreadPriority, -1, \ ! "What native priority should VM thread run at " \ ! "(-1 means no change)") \ \ product(bool, CompilerThreadHintNoPreempt, true, \ "(Solaris only) Give compiler threads an extra quanta") \ \ product(bool, VMThreadHintNoPreempt, false, \
*** 3503,3512 **** --- 3506,3524 ---- product(intx, JavaPriority7_To_OSPriority, -1, "Map Java priorities to OS priorities") \ product(intx, JavaPriority8_To_OSPriority, -1, "Map Java priorities to OS priorities") \ product(intx, JavaPriority9_To_OSPriority, -1, "Map Java priorities to OS priorities") \ product(intx, JavaPriority10_To_OSPriority,-1, "Map Java priorities to OS priorities") \ \ + experimental(bool, UseCriticalJavaThreadPriority, false, \ + "Java thread priority 10 maps to critical scheduling priority") \ + \ + experimental(bool, UseCriticalCompilerThreadPriority, false, \ + "Compiler thread(s) run at critical scheduling priority") \ + \ + experimental(bool, UseCriticalCMSThreadPriority, false, \ + "ConcurrentMarkSweep thread runs at critical scheduling priority")\ + \ /* compiler debugging */ \ notproduct(intx, CompileTheWorldStartAt, 1, \ "First class to consider when using +CompileTheWorld") \ \ notproduct(intx, CompileTheWorldStopAt, max_jint, \
*** 3873,3883 **** "Number of buckets in the interned String table") \ \ product(bool, UseVMInterruptibleIO, false, \ "(Unstable, Solaris-specific) Thread interrupt before or with " \ "EINTR for I/O operations results in OS_INTRPT. The default value"\ ! " of this flag is true for JDK 6 and earliers") /* * Macros for factoring of globals */ --- 3885,3895 ---- "Number of buckets in the interned String table") \ \ product(bool, UseVMInterruptibleIO, false, \ "(Unstable, Solaris-specific) Thread interrupt before or with " \ "EINTR for I/O operations results in OS_INTRPT. The default value"\ ! " of this flag is true for JDK 6 and earlier") /* * Macros for factoring of globals */
src/share/vm/runtime/globals.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File