windbg bp condition
时间:2014-07-16 22:51:13
收藏:0
阅读:218
0:000> bp 0012f2fc "j @ecx == 0 ‘‘;‘gc‘" 0:000> g
j代表judgement,与c++中的condition?A:B类似。
如果断点处ecx是0,则停下;否则go until next breakpoint(gc).
评论(0)