src/share/vm/utilities/vmError.cpp

changeset 5667
38f750491293
parent 5543
4b2838704fd5
child 5904
5cc2d82aa82a
     1.1 --- a/src/share/vm/utilities/vmError.cpp	Wed Sep 04 08:55:08 2013 -0400
     1.2 +++ b/src/share/vm/utilities/vmError.cpp	Fri Sep 06 08:42:42 2013 -0700
     1.3 @@ -574,6 +574,10 @@
     1.4    STEP(120, "(printing native stack)" )
     1.5  
     1.6       if (_verbose) {
     1.7 +     if (os::platform_print_native_stack(st, _context, buf, sizeof(buf))) {
     1.8 +       // We have printed the native stack in platform-specific code
     1.9 +       // Windows/x64 needs special handling.
    1.10 +     } else {
    1.11         frame fr = _context ? os::fetch_frame_from_context(_context)
    1.12                             : os::current_frame();
    1.13  
    1.14 @@ -604,6 +608,7 @@
    1.15            st->cr();
    1.16         }
    1.17       }
    1.18 +   }
    1.19  
    1.20    STEP(130, "(printing Java stack)" )
    1.21  

mercurial