help running
कुछ संकेत प्रदान करता है:
वहाँ step
और next
संस्थापन (और भी nexti
और 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.
तो हम देख सकते हैं कि step
चरणों में सबरूटीन्स, लेकिन next
कदम होगा अधिक सबरूटीन्स।
step
और stepi
(और next
और nexti
) "लाइन" या "अनुदेश" वृद्धि के साथ भेद कर रहे हैं।
step -- Step program until it reaches a different source line
stepi -- Step one instruction exactly
संबंधित है 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.
बहुत अधिक उपयोगी जानकारी https://sourceware.org/gdb/oniltocs/gdb/Continuing-and-Stepping.html पर है