During many, sometimes inundating, debugging sessions using DDD, I stumble upon loops. And I keep pressing next to get past it, and if there are many iterations, I just set a break point right after it, and press "continue." Is there any other way to go past loops?
feedback
|
|
You want the "until" command - see the gdb manual at http://www.gnu.org/software/gdb/documentation:
| ||||
|
feedback
|
|
I typically use the "continue until here" which sets a temporary breakpoint at that location and immediately continues execution. It is accessed via mouse button 3 which opens a popup menu. | |||
|
feedback
|