Previous Up

15.8  Switching To Creep Mode With CTRL-C

When the debugger is on and a program is running, typing CTRL-C prompts for input of an option. The d-option switches the debugger to creep mode and continues executing the interrupted program. The debugger will then stop at the next port of the running program.

[eclipse 1]: debug.
Debugger switched on - leap mode
[eclipse 2]: repeat,fail.
^C

interruption: type a, b, c, d, e, or h for help : ? d
  (1) 1 *EXIT  repeat   %>

Previous Up