• How to get a stack trace on Windows zz


    How to get a stack trace on Windows

     

    Tech Tip: GSS-0040

    Last Updated March 1, 2010

    Applies to GemStone/S 6.5x
    //z 2011-12-23 10:07 AM IS2120@CSDN

    If you encounter internal errors in GemStone processes, or if you have a situation where a GemStone process appears to be hanging, GemStone Technical Support will typically want to see a C level stack trace. This allows us to determine what code path resulted in the error. For hang situations, a series of stack traces several seconds apart will help in diagnosis - for example, very slow performance of long operations may appear to be a hang.

    GemStone distributes the symbol files required to get meaningful stack traces on Windows. However, you will need to download WinDbg, or use another Windows tool to actually get the stack trace.

    1. DOWNLOAD AND INSTALL WinDbg

    Go to http://www.microsoft.com/whdc/devtools/debugging/ and follow the link "Install Debugging Tools for Windows 32-bit Version"

    This process has been tested with version 6.11.1.404, which is listed under Previous Versions. Click on the link "Install 32-bit version 6.11.1.404[16.9 MB]" and save to your local disk.

    Run the installer, and install the complete package.

    2. START WinDbg

    Launch WinDbg from the Start menu.

    Set File>Symbol File Path to include your %GEMSTONE%/bin directory, which contains GemStone's .pdb symbol files. For example, N:\installdir\bin

    If you encounter errors relating to ntdll.dll, you may need to also add the following to the symbol path:http://msdl.microsoft.com/download/symbols

    3. ATTACH TO THE PROCESS

    Select the menu item File>Attach to a Process. Select the stoned.exe, gem.exe, or other GemStone process in the list, and press OK.

    4. GET THE STACK TRACE

    To get a stack, use the menu item View>Call Stack. This will open a window initially showing a call stack for the current thread, which is probably not interesting. Leave this windows open.

    Go to the menu item View>Processes and Threads. This will open a window with the stoned executable on top and a list of the threads (identified by hex codes). When you select a different thread, the call stack window will be automatically updated.

    One of the stacks will contain the main process thread, this will normally have "main" on the stack. For example, look for a frame stoned!main or gem!main.

    Use the menu item Edit>Copy Window Text To Clipboard to copy the stack.

    5. DETACH AND CONTINUE

    You can use Debug>Detach Debuggee to detach from the process and allow it to continue running.

    CAVEATS

    Since by invoking a debugger, you halt the system, use with caution.

    If you are requested to get a number of stack traces separated by some time, remember that no time passes while stopped in a debugger. Detach Debuggee to allow it to continue, then re-attach to get the next stack.



  • 相关阅读:
    linux下网络排错与查看
    linux下判断网络是否连接
    Linux 下操作gpio(两种方法,驱动和mmap)
    Kernel 中的 GPIO 定义和控制
    springboot jpa 解决延迟加载问题
    Hibernate @OneToOne懒加载实现解决方案
    Hibernate缓存和懒加载的坑你知道多少?这5个简单问题回答不上来就不敢说会用hibernate
    Spring Boot JPA 懒加载
    Spring Boot中使用Spring-data-jpa让数据访问更简单、更优雅
    Spring Data Jpa 详解 (配置篇)
  • 原文地址:https://www.cnblogs.com/IS2120/p/6745964.html
Copyright © 2020-2023  润新知