help running bazı ipuçları sağlar:
Var stepve nextöğretileri (ve ayrıca nextive 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.
Bu yüzden görebilirsiniz stepadımları içine değişmezler ancak nextadım olacaktır üzerinde altyordamlarını.
stepVe stepi(ve nextve nexti) "hat" veya "kullanıcı" artışlarla ayırt edilir.
step -- Step program until it reaches a different source line
stepi -- Step one instruction exactly
İlgili 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.
Daha birçok faydalı bilgi https://sourceware.org/gdb/onlinedocs/gdb/Continuing-and-Stepping.html adresinde bulunabilir.