--- old/src/share/vm/runtime/vmThread.cpp 2017-06-28 09:43:50.959853729 -0400 +++ new/src/share/vm/runtime/vmThread.cpp 2017-06-28 09:43:50.713053539 -0400 @@ -40,6 +40,7 @@ #include "trace/tracing.hpp" #include "utilities/dtrace.hpp" #include "utilities/events.hpp" +#include "utilities/vmError.hpp" #include "utilities/xmlstream.hpp" // Dummy VM operation to act as first element in our circular double-linked list @@ -433,7 +434,7 @@ GuaranteedSafepointInterval); // Support for self destruction - if ((SelfDestructTimer != 0) && !is_error_reported() && + if ((SelfDestructTimer != 0) && !VMError::is_error_reported() && (os::elapsedTime() > (double)SelfDestructTimer * 60.0)) { tty->print_cr("VM self-destructed"); exit(-1);