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

  • 相关阅读:
    [Bzoj2243][SDOI2011]染色(线段树&&树剖||LCT)
    [poj3074]Sudoku(舞蹈链)
    [Bzoj1047][HAOI2007]理想的正方形(ST表)
    [Bzoj1030][JSOI2007]文本生成器(AC自动机&dp)
    [Bzoj2431][HAOI2009]逆序对数列(前缀和优化dp)
    [Bzoj1072][SCOI2007]排列perm(状压dp)
    [Bzoj1195][HNOI2006]最短母串(AC自动机)
    Ajax解决IE浏览器兼容问题
    运行eclipse弹出“Failed to load the JNI shared”解决方法
    Java表单类双击提交
  • 原文地址:https://www.cnblogs.com/antigao/p/4380762.html
Copyright © 2011-2022 走看看