hotspot/src/share/vm/utilities/vmError.cpp
changeset 19952 bc974e92f881
parent 19334 3aa9ca404965
child 20692 65021f70c2fc
--- a/hotspot/src/share/vm/utilities/vmError.cpp	Wed Sep 04 08:55:08 2013 -0400
+++ b/hotspot/src/share/vm/utilities/vmError.cpp	Fri Sep 06 08:42:42 2013 -0700
@@ -574,6 +574,10 @@
   STEP(120, "(printing native stack)" )
 
      if (_verbose) {
+     if (os::platform_print_native_stack(st, _context, buf, sizeof(buf))) {
+       // We have printed the native stack in platform-specific code
+       // Windows/x64 needs special handling.
+     } else {
        frame fr = _context ? os::fetch_frame_from_context(_context)
                            : os::current_frame();
 
@@ -604,6 +608,7 @@
           st->cr();
        }
      }
+   }
 
   STEP(130, "(printing Java stack)" )