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/onlinesocs/gdb/Continuing-and-Stepping.html এ রয়েছে