src/share/vm/runtime/simpleThresholdPolicy.hpp

Print this page

        

*** 20,29 **** --- 20,37 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef SHARE_VM_RUNTIME_SIMPLETHRESHOLDPOLICY_HPP + #define SHARE_VM_RUNTIME_SIMPLETHRESHOLDPOLICY_HPP + + #include "code/nmethod.hpp" + #include "oops/methodDataOop.hpp" + #include "runtime/compilationPolicy.hpp" + #include "utilities/globalDefinitions.hpp" + class CompileTask; class CompileQueue; class SimpleThresholdPolicy : public CompilationPolicy { int _c1_count, _c2_count;
*** 103,107 **** --- 111,117 ---- // Tell the runtime if we think a given method is adequately profiled. virtual bool is_mature(methodOop method); // Initialize: set compiler thread count virtual void initialize(); }; + + #endif // SHARE_VM_RUNTIME_SIMPLETHRESHOLDPOLICY_HPP