< prev index next >

src/share/vm/runtime/globals.hpp

Print this page




3912   product(intx, PerfDataMemorySize, 32*K,                                   \
3913           "Size of performance data memory region. Will be rounded "        \
3914           "up to a multiple of the native os page size.")                   \
3915           range(128, 32*64*K)                                               \
3916                                                                             \
3917   product(intx, PerfMaxStringConstLength, 1024,                             \
3918           "Maximum PerfStringConstant string length before truncation")     \
3919           range(32, 32*K)                                                   \
3920                                                                             \
3921   product(bool, PerfAllowAtExitRegistration, false,                         \
3922           "Allow registration of atexit() methods")                         \
3923                                                                             \
3924   product(bool, PerfBypassFileSystemCheck, false,                           \
3925           "Bypass Win32 file system criteria checks (Windows Only)")        \
3926                                                                             \
3927   product(intx, UnguardOnExecutionViolation, 0,                             \
3928           "Unguard page and retry on no-execute fault (Win32 only) "        \
3929           "0=off, 1=conservative, 2=aggressive")                            \
3930           range(0, 2)                                                       \
3931                                                                             \



3932   /* Serviceability Support */                                              \
3933                                                                             \
3934   product(bool, ManagementServer, false,                                    \
3935           "Create JMX Management Server")                                   \
3936                                                                             \
3937   product(bool, DisableAttachMechanism, false,                              \
3938           "Disable mechanism that allows tools to attach to this VM")       \
3939                                                                             \
3940   product(bool, StartAttachListener, false,                                 \
3941           "Always start Attach Listener at VM startup")                     \
3942                                                                             \
3943   manageable(bool, PrintConcurrentLocks, false,                             \
3944           "Print java.util.concurrent locks in thread dump")                \
3945                                                                             \
3946   product(bool, TransmitErrorReport, false,                                 \
3947           "Enable error report transmission on erroneous termination")      \
3948                                                                             \
3949   product(ccstr, ErrorReportServer, NULL,                                   \
3950           "Override built-in error report server address")                  \
3951                                                                             \




3912   product(intx, PerfDataMemorySize, 32*K,                                   \
3913           "Size of performance data memory region. Will be rounded "        \
3914           "up to a multiple of the native os page size.")                   \
3915           range(128, 32*64*K)                                               \
3916                                                                             \
3917   product(intx, PerfMaxStringConstLength, 1024,                             \
3918           "Maximum PerfStringConstant string length before truncation")     \
3919           range(32, 32*K)                                                   \
3920                                                                             \
3921   product(bool, PerfAllowAtExitRegistration, false,                         \
3922           "Allow registration of atexit() methods")                         \
3923                                                                             \
3924   product(bool, PerfBypassFileSystemCheck, false,                           \
3925           "Bypass Win32 file system criteria checks (Windows Only)")        \
3926                                                                             \
3927   product(intx, UnguardOnExecutionViolation, 0,                             \
3928           "Unguard page and retry on no-execute fault (Win32 only) "        \
3929           "0=off, 1=conservative, 2=aggressive")                            \
3930           range(0, 2)                                                       \
3931                                                                             \
3932   product(bool, EnableConcGCPerfCounter, false,                             \
3933           "Enable PerfCounter for STW in CMS GC")                           \
3934                                                                             \
3935   /* Serviceability Support */                                              \
3936                                                                             \
3937   product(bool, ManagementServer, false,                                    \
3938           "Create JMX Management Server")                                   \
3939                                                                             \
3940   product(bool, DisableAttachMechanism, false,                              \
3941           "Disable mechanism that allows tools to attach to this VM")       \
3942                                                                             \
3943   product(bool, StartAttachListener, false,                                 \
3944           "Always start Attach Listener at VM startup")                     \
3945                                                                             \
3946   manageable(bool, PrintConcurrentLocks, false,                             \
3947           "Print java.util.concurrent locks in thread dump")                \
3948                                                                             \
3949   product(bool, TransmitErrorReport, false,                                 \
3950           "Enable error report transmission on erroneous termination")      \
3951                                                                             \
3952   product(ccstr, ErrorReportServer, NULL,                                   \
3953           "Override built-in error report server address")                  \
3954                                                                             \


< prev index next >