This command displays information about all breakpoints defined in this controller.
ShowBreak
Prerequisites
None
Parameters
None
Remarks
If there are no breakpoints defined, this command does nothing.
It lists all breakpoints with information about where they are defined and how many times they have been hit since they were defined.
The information displayed consists of one line per breakpoint as follows:
number, project_name, proc_name, proc_line, file_name, file_line, hit_count
where:
This display shows that 3 breakpoints are defined at the locations shown. Breakpoint 1 has been hit 5 times, 2 has been hit 2 times, and 3 has not been hit at all.
number
Is the number of the breakpoint, assigned automatically by the Set Break command.
project_name
Is the name of the project where the breakpoint is defined.
proc_name
Is the name of the procedure where the breakpoint is defined.
proc_line
Is the number of the line of the procedure where the breakpoint is defined.
file_name
Is the name of the file where the procedure containing the breakpoint is found.
file_line
Is the number of the line in the file that corresponds to the procedure step where the breakpoint is defined.
hit_count
Is the number of times this breakpoint has been hit since it was defined.
Examples
Show Break
1, My_project, Sub_test, 6, Testfile.gpl, 30, 5
2, My_project, Sub_test, 20, Testfile.gpl, 44, 2
3, My_project, Main_program, 12, Testfile.gpl, 225, 0
This display shows that 3 breakpoints are defined at the locations shown. Breakpoint 1 has been hit 5 times, 2 has been hit 2 times, and 3 has not been hit at all.
See Also