Troubleshooting a COM+ application deadlock

谁说胖子不能爱 提交于 2019-12-05 21:26:43

SIEExtPub can help you figure out locks in COM

And here is article about this

If you have any trouble in using this extension please post back

You could use !locks which will try to auto analyse deadlocks and then dump the call stacks of the threads ~* kb and check which threads are waiting on the critical section or event objects.

There is an example usage here: http://www.dumpanalysis.org/blog/index.php/2007/07/28/crash-dump-analysis-patterns-part-9c/

plus the guy's site has lots of examples of using WinDbg for other types of deadlocks including managed code: http://www.dumpanalysis.org/ just do a search on the page for 'deadlock', hope this helps.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!