Contents|Index|Previous|Next
Continuing and stepping 

Continuing means resuming program execution until your program completes normally. In contrast, stepping means executing just one more “step” of your program, where “step” may mean either one line of source code, or one machine instruction (depending on what particular command you use). Either when continuing or when stepping, your program may stop even sooner, due to a breakpoint or a signal. (If due to a signal, you may want to use handle, or use ‘signal 0’ to resume execution. See Signals.)
Top|Contents|Index|Previous|Next