windbg bp condition
生活随笔
收集整理的这篇文章主要介绍了
windbg bp condition
小编觉得挺不错的,现在分享给大家,帮大家做个参考.
0:000> bp 0012f2fc "j @ecx == 0 '';'gc'"
0:000> g
j代表judgement,与c++中的condition?A:B类似。
如果断点处ecx是0,则停下;否则go until next breakpoint(gc).
bp 0012f2fc "j (@@c++(*(int*)(@esp+4) == 0x50)) 'dd esp';'gc'"
bp 0012f2fc "j (@@c++(*(int*)(@esp+4) != 0)) '? (dwo(@esp+4))';'gc'"
http://stackoverflow.com/questions/6097157/conditional-breakpoint-that-tests-multiple-stack-variables
转载于:https://www.cnblogs.com/long123king/p/3835572.html
总结
以上是生活随笔为你收集整理的windbg bp condition的全部内容,希望文章能够帮你解决所遇到的问题。
- 上一篇: 优化网站性能 提高网站速度访问速度的14
- 下一篇: 写给互联网产品人的进阶感言