Debug program crash with dump file.】的更多相关文章

1. Task manager, -> find the process for the program which crashed. 2. Right click the process -> select "Create dump file". 3. Dump file will be saved in "C:\Users\<UserName>\appdata\local\Temp" 4. Debug with VS 2013 参考:ht…
dump file is a snapshot of the processs memeory. to debug it, we need use its corresponding executive to help restore the scenariopdb and source file are also needed to help analyze it. create dump file // header file, to generate a dll that will cau…
使用WinDBG这个工具,可以在应用程序异常终止或者无响应时获取它的尸体,以用来解剖研究. Creating Dump File      在Vista环境中抓取Dump文件很方便,在task manager(Ctrl-Shift-Esc)中,选中要生成dump文件的进程,点击context menu中的"Creat Dump File"就可以了. 通常,使用WinDBG目录下(C:/Program Files/Debugging Tools for Windows (x86))的ad…
基本规则: 只有debug mode enable的机器,产生的dump file才会保存dbgprint的buffer. 默认!dbgprint的buffer size是4k. 增加buffer size: ...\Windows Kits\8.1\Debuggers\x86\kdbgctrl.exe 比如设成 1M大小,kdbgctrl.exe -sdb 0x100000 设置每次重启之后都会失效,所以重启后都需要敲这个命令. Take care: 当我把buffer设置成0x100000(…
fatal error C1083: Cannot open precompiled header file: 'Debug/xxoo.pch': No such file or directory 相信很多童鞋都遇到过这种问题,找不到pch文件,看这个描述肯定是与预编译头有问关系.(预编译头有神马作用就不说了,可以自己了解下).一般遇到上面的问题很有可能是拷贝工程的时候,把stdafx.h stdafx.cpp文件删除了,而此时你即使把这两个文件再加入工程还是会报上面的错误.要重现这个错误也很…
Linux core dump file详解 http://www.cnblogs.com/langqi250/archive/2013/03/05/2944931.html…
ORA-39142: incompatible version number 5.1 in dump file http://blog.itpub.net/26664718/viewspace-2148486/…
ORA-39095: Dump file space has been exhausted Table of Contents 1. 简述 2. 错误信息 3. 分析 4. 解决 5. 扩展 1 简述 一个朋友在导数据的时候,突然遇到ORA-39095错误.随即查看磁盘空间,发现才使用了60%多.而导出的数据只有几个G. 明明有空间,为什么会报空间耗尽呢?百爪搔心的问我~ 下面是分析和解决过程. 2 错误信息 $ oerr ora 39095 39095, 00000, "Dump file s…
1.  Project->Properties->Build->Advance, Debug Info : Full/pdb-only . set to [none] will not generate pdb file. 2.when new version release , rebuild whole solution , copy all files to server.   what's the difference between C# compilation setting…
1)单独编译StdAfx.cpp 2)编译所有(即按Ctrl+F7) 这时因为该模块没有包括预编译头文件“stdafx.h”的缘故.VC用一个stdafx.cpp包含头文件stdafx.h,然后在stdafx.h里包含大部分系统头文件,这样编译时VC就通过编译stdafx.cpp把大部分系统头文件预编译进来了,在Debug目录下有一个很大的文件*.pch,这里就存储了预编译信息.根据这个原理,如果这个pch损坏了或被删除了,系统重新编译时就会抱怨“cannot openprecompiled h…