[Z] Windbg以及vs debug使用

Windbg

一篇中国人写的质量非常高的Windbg文章:篇中国人写的质量非常高的Windbg文章:

http://www.yiiyee.cn/Blog/windbg/

code project上的Windbg教程,非常科普:

http://www.codeproject.com/Articles/6084/Windows-Debuggers-Part-A-WinDbg-Tutorial

Kernel Debugger

这里有一个使用kernel debugger查看线程使用mutex以及mutex owner信息:

http://weblogs.thinktecture.com/ingo/2006/08/who-is-blocking-that-mutex---fun-with-windbg-cdb-and-kd.html

这里有一个使用kd查看Synchronization Event的:

http://www.osronline.com/showThread.cfm?link=33572

MSDN上的一些kernel debugger的命令:

https://msdn.microsoft.com/en-us/library/windows/hardware/dn745912(v=vs.85).aspx 

code project(看来这个网站的windows编程教程很不错)的kernel debugger教程:

http://www.codeproject.com/Articles/7913/Debug-Tutorial-Part-Navigating-The-Kernel-Debugg

VS Debugger

MSDN官方的vs debug教程,看起来还不错:

https://msdn.microsoft.com/en-us/library/sc65sadd(v=vs.90).aspx

原文地址:https://www.cnblogs.com/waytofall/p/5123801.html