
windbg
shuixin536
这个作者很懒,什么都没留下…
展开
-
Windows程序调试系列文章——Windbg轻松上路
转自http://www.cnblogs.com/itrust/archive/2006/08/18/480692.html 摘译自 WinDbg the easy way ,Oleg Starodumov 源码下载:http://files.cnblogs.com/itrust/WindbgEasyWayDemo.rar 如果要转载 2011-12-29 17:57:59 · 862 阅读 · 0 评论 -
如何找内存泄露
先写一段这样的程序: #include "stdafx.h" #include void AllocateMemory() { int* a = new int[2000]; for(int i=0;i { *a=0; a++; } Sleep(1); } int _tmain(int argc, _TCHA转载 2011-12-29 17:58:47 · 590 阅读 · 0 评论 -
翻译:通往WinDbg的捷径(二)
标 题: 翻译:通往WinDbg的捷径(二) 作 者: arhat 时 间: 2006-04-14,22:54:50 链 接: http://bbs.pediy.com/showthread.php?t=24119 通往WinDbg的捷径(二) 原文:http://www.debuginfo.com/articles/easywindbg2.html 译者:arhat 时间转载 2011-12-29 18:05:45 · 982 阅读 · 0 评论 -
Application Verifier Locks 0x201 Active Critical Section
Suppose you are trying to get your application Vista Certified or OEM Ready. You test your application with Application Verifier and you see this error in the log: "avrf:logEntry Time="2008-10-15 :转载 2011-12-29 18:03:25 · 1285 阅读 · 0 评论 -
翻译:通往WinDbg的捷径(一)
标 题: 翻译:通往WinDbg的捷径(一) 作 者: arhat 时 间: 2006-04-13,21:11:41 链 接: http://bbs.pediy.com/showthread.php?t=24077 通往WinDbg的捷径(一) 原文:http://www.debuginfo.com/articles/easywindbg.html 译者:arhat 时间:2转载 2011-12-29 18:05:12 · 745 阅读 · 0 评论 -
几个简单的windbg命令
!sym noisy可以将整个加载symbol的过程打印出来 0:000> !sym noisy 0:000> .reload /i alibrowser.exe 0:000> .reload -f0:000> !analyze -v //这条命令分析故障转储里的异常信息,确定异常发生的位置,调用栈,并显示详细的报告 0:000> lm // 列出所有模块 lm m k*原创 2012-06-11 11:13:36 · 1245 阅读 · 0 评论