src/share/vm/utilities/vmError.hpp

Print this page

        

*** 20,29 **** --- 20,34 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef SHARE_VM_UTILITIES_VMERROR_HPP + #define SHARE_VM_UTILITIES_VMERROR_HPP + + #include "utilities/globalDefinitions.hpp" + class VM_ReportJavaOutOfMemory; class VMError : public StackObj { friend class VM_ReportJavaOutOfMemory;
*** 114,118 **** --- 119,125 ---- static address get_resetted_sighandler(int sig); // check to see if fatal error reporting is in progress static bool fatal_error_in_progress() { return first_error != NULL; } }; + + #endif // SHARE_VM_UTILITIES_VMERROR_HPP