src/hotspot/share/runtime/jvmFlagConstraintsRuntime.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File webrev Cdiff src/hotspot/share/runtime/jvmFlagConstraintsRuntime.hpp

src/hotspot/share/runtime/jvmFlagConstraintsRuntime.hpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 20,51 **** * or visit www.oracle.com if you need additional information or have any * questions. * */ ! #ifndef SHARE_VM_RUNTIME_COMMANDLINEFLAGCONSTRAINTSRUNTIME_HPP ! #define SHARE_VM_RUNTIME_COMMANDLINEFLAGCONSTRAINTSRUNTIME_HPP - #include "runtime/globals.hpp" #include "utilities/globalDefinitions.hpp" /* * Here we have runtime arguments constraints functions, which are called automatically * whenever flag's value changes. If the constraint fails the function should return * an appropriate error value. */ ! Flag::Error ObjectAlignmentInBytesConstraintFunc(intx value, bool verbose); ! Flag::Error ContendedPaddingWidthConstraintFunc(intx value, bool verbose); ! Flag::Error BiasedLockingBulkRebiasThresholdFunc(intx value, bool verbose); ! Flag::Error BiasedLockingStartupDelayFunc(intx value, bool verbose); ! Flag::Error BiasedLockingBulkRevokeThresholdFunc(intx value, bool verbose); ! Flag::Error BiasedLockingDecayTimeFunc(intx value, bool verbose); ! Flag::Error PerfDataSamplingIntervalFunc(intx value, bool verbose); ! Flag::Error ThreadLocalHandshakesConstraintFunc(bool value, bool verbose); ! #endif /* SHARE_VM_RUNTIME_COMMANDLINEFLAGCONSTRAINTSRUNTIME_HPP */ --- 20,50 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ ! #ifndef SHARE_VM_RUNTIME_JVMFLAGCONSTRAINTSRUNTIME_HPP ! #define SHARE_VM_RUNTIME_JVMFLAGCONSTRAINTSRUNTIME_HPP #include "utilities/globalDefinitions.hpp" /* * Here we have runtime arguments constraints functions, which are called automatically * whenever flag's value changes. If the constraint fails the function should return * an appropriate error value. */ ! JVMFlag::Error ObjectAlignmentInBytesConstraintFunc(intx value, bool verbose); ! JVMFlag::Error ContendedPaddingWidthConstraintFunc(intx value, bool verbose); ! JVMFlag::Error BiasedLockingBulkRebiasThresholdFunc(intx value, bool verbose); ! JVMFlag::Error BiasedLockingStartupDelayFunc(intx value, bool verbose); ! JVMFlag::Error BiasedLockingBulkRevokeThresholdFunc(intx value, bool verbose); ! JVMFlag::Error BiasedLockingDecayTimeFunc(intx value, bool verbose); ! JVMFlag::Error PerfDataSamplingIntervalFunc(intx value, bool verbose); ! JVMFlag::Error ThreadLocalHandshakesConstraintFunc(bool value, bool verbose); ! #endif /* SHARE_VM_RUNTIME_JVMFLAGCONSTRAINTSRUNTIME_HPP */
src/hotspot/share/runtime/jvmFlagConstraintsRuntime.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File