comparison src/share/vm/utilities/vmError.hpp @ 12199:38f750491293

8022335: Native stack walk while generating hs_err does not work on Windows x64 Summary: Use WinDbg API StackWalk64() Reviewed-by: zgu, dholmes
author iklam
date Fri, 06 Sep 2013 08:42:42 -0700
parents 068b406e307f
children
comparison
equal deleted inserted replaced
12198:baa7927dfbd2 12199:38f750491293
134 // signal was not changed by error reporter 134 // signal was not changed by error reporter
135 static address get_resetted_sighandler(int sig); 135 static address get_resetted_sighandler(int sig);
136 136
137 // check to see if fatal error reporting is in progress 137 // check to see if fatal error reporting is in progress
138 static bool fatal_error_in_progress() { return first_error != NULL; } 138 static bool fatal_error_in_progress() { return first_error != NULL; }
139
140 static jlong get_first_error_tid() {
141 return first_error_tid;
142 }
139 }; 143 };
140 144
141 #endif // SHARE_VM_UTILITIES_VMERROR_HPP 145 #endif // SHARE_VM_UTILITIES_VMERROR_HPP