
windbg
文章平均质量分 81
rx_wen
这个作者很懒,什么都没留下…
展开
-
Minimize Code Explosion of Generic Type
Generic is added to .net framework since version 2, which highly increase the re-usability of commonly used algorithms. It's well known that jit compiler will generate concrete type with given generic type argument at run time. So, it's possible that there原创 2009-05-19 11:12:00 · 588 阅读 · 0 评论 -
windbg sos.dll version issue
I debugged a .net 1.1 based windows application which exits silently upon start up. The problem itself is trivial and not worth mentioning. What I want to say is there is a subtle point about sos.dll version.When I was debugging, I started the applicati原创 2010-01-20 18:50:00 · 772 阅读 · 0 评论 -
standalone windbg v6.12.0002.633
I read from Tomas's post that newer version windbg can't be downloaded from microsoft directly anymore. To get newer windbg, we have to download the huge 620 mb WDK iso and extract windbg installer from it manually. The newest windbg standalone installer i原创 2010-04-23 20:23:00 · 1091 阅读 · 0 评论 -
Trace System Calls
Sometimes, it's helpful to trace system api calls during debugging so that we can determine if the incorrect behavior is caused by passing wrong argument to a function or not. Or we can try to identify the performance bottleneck with it. There are several原创 2009-08-24 08:47:00 · 674 阅读 · 0 评论 -
Use trace point in windbg
In visual studio, we can add trace point while debugging. It's a helpful feature to analyze the behavior of a program without breaking the execution of the target process. Isn't it useful if you debug a multi-thread process?At first glance, it seems to be原创 2009-08-14 09:59:00 · 530 阅读 · 0 评论