PowerAda Different Ways to Use the Debugger

From OC Systems Wiki!
Jump to: navigation, search


The debugger operates in either of two modes: execution or command. In execution mode, your program continues running until it either reaches a breakpoint, an unhandled exception, or a normal program end. In command mode, the debugger stops all execution while it reads and processes your commands. The debugger returns to execution mode when you issue a command to continue running the program or to start running the program from the beginning.

There are several ways you can use these two basic modes of operation:

See "Remote Debugging" for information on this process.