Running And Stopping - cont.
In the gdb prompt:
- 'next' performs the next instruction (if a function call - performs the
full function call).
- 'step' steps into the next command (for a function call - stops at the
first instruction of the function).
- 'nexti' and 'stepi' do the same, at the machine-language level.
- 'cont' lets the program continue execution (until the next ctrl-C).
Originally written by
guy keren