zoukankan      html  css  js  c++  java
  • !heap命令问题 Windbg

    !heap是查看进程中堆情况的命令

    使用后有如下提示:

    *************************************************************************
    ***    Your debugger is not using the correct symbols                       ***
    ***                                                                                 ***
    ***    In order for this command to work properly, your symbol path       ***
    ***    must point to .pdb files that have full type information.            ***
    ***                                                                               ***
    ***    Certain .pdb files (such as the public OS symbols) do not            ***
    ***    contain the required information.  Contact the group that            ***
    ***    provided you with these symbols if you need this command to        ***
    ***    work.                                                                        ***
    ***                                                                                ***
    ***    Type referenced: ntdll!_HEAP_ENTRY                                     ***
    ************************************************************************* 

     !heap这个扩展命令需要系统DLL(NTDLL和KERNEL32.DLL)的符号,上面的提示是说缺少ntdll!_HEAP_ENTRY(描述堆块的基本数据结构,见《软件调试》P658)这个结构的符号。
    解决的方法是连接符号服务器(P935),让WinDBG自动下载系统文件的符号,也就是在连着互联网的情况下执行下面的两条命令:
    .symfix c:symbols (设置符号服务器,并把c:symbols作为下游符号库)
    .reload (重新加载符号)

    注:c:symbols文件夹最好在你的工程中创建。

    .symfix c:symbols

    .reload

  • 相关阅读:
    Spring(八)-spring5框架新功能
    Spring(七)-事务操作
    Spring(五)-AOP
    Linux errno错误码
    思考:如何保证服务稳定性?
    CPU性能分析工具原理
    Oracle数据库url格式
    java对象的四种引用:强引用、软引用、弱引用和虚引用
    给老板汇报技术规划的要点
    后端程序员必备:分布式事务基础篇
  • 原文地址:https://www.cnblogs.com/antigao/p/4380762.html
Copyright © 2011-2022 走看看