src/share/vm/runtime/sweeper.hpp

Print this page

        

*** 20,29 **** --- 20,32 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef SHARE_VM_RUNTIME_SWEEPER_HPP + #define SHARE_VM_RUNTIME_SWEEPER_HPP + // An NmethodSweeper is an incremental cleaner for: // - cleanup inline caches // - reclamation of unreferences zombie nmethods //
*** 69,73 **** --- 72,78 ---- static void speculative_disconnect_nmethods(bool was_full); // Called by vm op to deal with alloc failure static void set_was_full(bool state) { _was_full = state; } static bool was_full() { return _was_full; } }; + + #endif // SHARE_VM_RUNTIME_SWEEPER_HPP