diff 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
line wrap: on
line diff
--- a/src/share/vm/utilities/vmError.hpp	Wed Sep 04 08:55:08 2013 -0400
+++ b/src/share/vm/utilities/vmError.hpp	Fri Sep 06 08:42:42 2013 -0700
@@ -136,6 +136,10 @@
 
   // check to see if fatal error reporting is in progress
   static bool fatal_error_in_progress() { return first_error != NULL; }
+
+  static jlong get_first_error_tid() {
+    return first_error_tid;
+  }
 };
 
 #endif // SHARE_VM_UTILITIES_VMERROR_HPP