diff src/share/vm/runtime/os.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 c636758ea616
children 06ae47d9d088
line wrap: on
line diff
--- a/src/share/vm/runtime/os.hpp	Wed Sep 04 08:55:08 2013 -0400
+++ b/src/share/vm/runtime/os.hpp	Fri Sep 06 08:42:42 2013 -0700
@@ -795,6 +795,14 @@
 #endif
 
  public:
+#ifndef PLATFORM_PRINT_NATIVE_STACK
+  // No platform-specific code for printing the native stack.
+  static bool platform_print_native_stack(outputStream* st, void* context,
+                                          char *buf, int buf_size) {
+    return false;
+  }
+#endif
+
   // debugging support (mostly used by debug.cpp but also fatal error handler)
   static bool find(address pc, outputStream* st = tty); // OS specific function to make sense out of an address