< prev index next >

src/share/vm/runtime/commandLineFlagConstraintsRuntime.hpp

Print this page


  28 #include "runtime/globals.hpp"
  29 #include "utilities/globalDefinitions.hpp"
  30 
  31 /*
  32  * Here we have runtime arguments constraints functions, which are called automatically
  33  * whenever flag's value changes. If the constraint fails the function should return
  34  * an appropriate error value.
  35  */
  36 
  37 Flag::Error ObjectAlignmentInBytesConstraintFunc(intx value, bool verbose);
  38 
  39 Flag::Error ContendedPaddingWidthConstraintFunc(intx value, bool verbose);
  40 
  41 Flag::Error BiasedLockingBulkRebiasThresholdFunc(intx value, bool verbose);
  42 Flag::Error BiasedLockingStartupDelayFunc(intx value, bool verbose);
  43 Flag::Error BiasedLockingBulkRevokeThresholdFunc(intx value, bool verbose);
  44 Flag::Error BiasedLockingDecayTimeFunc(intx value, bool verbose);
  45 
  46 Flag::Error PerfDataSamplingIntervalFunc(intx value, bool verbose);
  47 
  48 Flag::Error SharedReadWriteSizeConstraintFunc(size_t value, bool verbose);
  49 Flag::Error SharedReadOnlySizeConstraintFunc(size_t value, bool verbose);
  50 Flag::Error SharedMiscDataSizeConstraintFunc(size_t value, bool verbose);
  51 Flag::Error SharedMiscCodeSizeConstraintFunc(size_t value, bool verbose);
  52 
  53 #endif /* SHARE_VM_RUNTIME_COMMANDLINEFLAGCONSTRAINTSRUNTIME_HPP */


  28 #include "runtime/globals.hpp"
  29 #include "utilities/globalDefinitions.hpp"
  30 
  31 /*
  32  * Here we have runtime arguments constraints functions, which are called automatically
  33  * whenever flag's value changes. If the constraint fails the function should return
  34  * an appropriate error value.
  35  */
  36 
  37 Flag::Error ObjectAlignmentInBytesConstraintFunc(intx value, bool verbose);
  38 
  39 Flag::Error ContendedPaddingWidthConstraintFunc(intx value, bool verbose);
  40 
  41 Flag::Error BiasedLockingBulkRebiasThresholdFunc(intx value, bool verbose);
  42 Flag::Error BiasedLockingStartupDelayFunc(intx value, bool verbose);
  43 Flag::Error BiasedLockingBulkRevokeThresholdFunc(intx value, bool verbose);
  44 Flag::Error BiasedLockingDecayTimeFunc(intx value, bool verbose);
  45 
  46 Flag::Error PerfDataSamplingIntervalFunc(intx value, bool verbose);
  47 





  48 #endif /* SHARE_VM_RUNTIME_COMMANDLINEFLAGCONSTRAINTSRUNTIME_HPP */
< prev index next >