Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 521 Bytes

201204231119.txt.md

File metadata and controls

25 lines (17 loc) · 521 Bytes

2.20 在GDB里第N次经过断点时断下来

http://scz.617.cn/unix/201204231119.txt

A:

山寨办法是:


define ignorecount set $count=0 while ($count<$arg0) set $count=$count+1 c end end

"ignorecount "表示执行COUNT次c。

正经办法是:

ignore

将忽略次断点命中,直至<COUNT+1>次断点命中。