help running
proporciona algunas pistas:
Hay step
e next
instrucciones (y también nexti
y stepi
).
(gdb) help next
Step program, proceeding through subroutine calls.
Usage: next [N]
Unlike "step", if the current source line calls a subroutine,
this command does not enter the subroutine, but instead steps over
the call, in effect treating it as a single source line.
Así podemos ver que los step
pasos a subrutinas, pero next
a un paso más de subrutinas.
El step
y stepi
(y el next
y nexti
) se distinguen por incrementos de "línea" o "instrucción".
step -- Step program until it reaches a different source line
stepi -- Step one instruction exactly
Relacionado es finish
:
(gdb) help finish
Execute until selected stack frame returns.
Usage: finish
Upon return, the value returned is printed and put in the value history.
Hay mucha más información útil en https://sourceware.org/gdb/onlinedocs/gdb/Continuing-and-Stepping.html