< prev index next >

src/hotspot/share/runtime/globals.hpp

Print this page
rev 56046 : v2.00 -> v2.05 (CR5/v2.05/8-for-jdk13) patches combined into one; merge with 8229212.patch; merge with jdk-14+11; merge with 8230184.patch.


 699           "registering as parallel capable")                                \
 700                                                                             \
 701   product_pd(bool, DontYieldALot,                                           \
 702           "Throw away obvious excess yield calls")                          \
 703                                                                             \
 704   develop(bool, UseDetachedThreads, true,                                   \
 705           "Use detached threads that are recycled upon termination "        \
 706           "(for Solaris only)")                                             \
 707                                                                             \
 708   experimental(bool, DisablePrimordialThreadGuardPages, false,              \
 709                "Disable the use of stack guard pages if the JVM is loaded " \
 710                "on the primordial process thread")                          \
 711                                                                             \
 712   product(bool, UseLWPSynchronization, true,                                \
 713           "Use LWP-based instead of libthread-based synchronization "       \
 714           "(SPARC only)")                                                   \
 715                                                                             \
 716   product(intx, MonitorBound, 0, "Bound Monitor population")                \
 717           range(0, max_jint)                                                \
 718                                                                             \










 719   experimental(intx, MonitorUsedDeflationThreshold, 90,                     \
 720                 "Percentage of used monitors before triggering cleanup "    \
 721                 "safepoint which deflates monitors (0 is off). "            \
 722                 "The check is performed on GuaranteedSafepointInterval.")   \
 723                 range(0, 100)                                               \
 724                                                                             \
 725   experimental(intx, hashCode, 5,                                           \
 726                "(Unstable) select hashCode generation algorithm")           \
 727                                                                             \
 728   product(bool, FilterSpuriousWakeups, true,                                \
 729           "When true prevents OS-level spurious, or premature, wakeups "    \
 730           "from Object.wait (Ignored for Windows)")                         \
 731                                                                             \
 732   develop(bool, UsePthreads, false,                                         \
 733           "Use pthread-based instead of libthread-based synchronization "   \
 734           "(SPARC only)")                                                   \
 735                                                                             \
 736   product(bool, ReduceSignalUsage, false,                                   \
 737           "Reduce the use of OS signals in Java and/or the VM")             \
 738                                                                             \
 739   develop(bool, LoadLineNumberTables, true,                                 \
 740           "Tell whether the class file parser loads line number tables")    \
 741                                                                             \
 742   develop(bool, LoadLocalVariableTables, true,                              \




 699           "registering as parallel capable")                                \
 700                                                                             \
 701   product_pd(bool, DontYieldALot,                                           \
 702           "Throw away obvious excess yield calls")                          \
 703                                                                             \
 704   develop(bool, UseDetachedThreads, true,                                   \
 705           "Use detached threads that are recycled upon termination "        \
 706           "(for Solaris only)")                                             \
 707                                                                             \
 708   experimental(bool, DisablePrimordialThreadGuardPages, false,              \
 709                "Disable the use of stack guard pages if the JVM is loaded " \
 710                "on the primordial process thread")                          \
 711                                                                             \
 712   product(bool, UseLWPSynchronization, true,                                \
 713           "Use LWP-based instead of libthread-based synchronization "       \
 714           "(SPARC only)")                                                   \
 715                                                                             \
 716   product(intx, MonitorBound, 0, "Bound Monitor population")                \
 717           range(0, max_jint)                                                \
 718                                                                             \
 719   diagnostic(bool, AsyncDeflateIdleMonitors, true,                          \
 720           "Deflate idle monitors using JavaThreads and the ServiceThread.") \
 721                                                                             \
 722   /* notice: the max range value here is max_jint, not max_intx  */         \
 723   /* because of overflow issue                                   */         \
 724   diagnostic(intx, AsyncDeflationInterval, 250,                             \
 725           "Async deflate idle monitors every so many milliseconds when "    \
 726           "MonitorUsedDeflationThreshold is exceeded (0 is off).")          \
 727           range(0, max_jint)                                                \
 728                                                                             \
 729   experimental(intx, MonitorUsedDeflationThreshold, 90,                     \
 730           "Percentage of used monitors before triggering deflation (0 is "  \
 731           "off). The check is performed on GuaranteedSafepointInterval "    \
 732           "or AsyncDeflateInterval.")                                       \
 733           range(0, 100)                                                     \
 734                                                                             \
 735   experimental(intx, hashCode, 5,                                           \
 736                "(Unstable) select hashCode generation algorithm")           \
 737                                                                             \
 738   product(bool, FilterSpuriousWakeups, true,                                \
 739           "When true prevents OS-level spurious, or premature, wakeups "    \
 740           "from Object.wait (Ignored for Windows)")                         \
 741                                                                             \
 742   develop(bool, UsePthreads, false,                                         \
 743           "Use pthread-based instead of libthread-based synchronization "   \
 744           "(SPARC only)")                                                   \
 745                                                                             \
 746   product(bool, ReduceSignalUsage, false,                                   \
 747           "Reduce the use of OS signals in Java and/or the VM")             \
 748                                                                             \
 749   develop(bool, LoadLineNumberTables, true,                                 \
 750           "Tell whether the class file parser loads line number tables")    \
 751                                                                             \
 752   develop(bool, LoadLocalVariableTables, true,                              \


< prev index next >