LIST AT command
Lists the currently defined breakpoints, including the action taken
when the specified breakpoint is activated. If no action is defined, z/OS® Debugger displays
the NULL command.
AT_command- A valid
ATcommand that includes at least one operand. TheATcommand must be complete except that theevery_clauseand command are omitted. ENABLED- Restricts the list to enabled breakpoints. The default is to list both enabled and disabled breakpoints.
DISABLED- Restricts the list to disabled breakpoints. The default is to list both enabled and disabled breakpoints.
ALLOCATE- Lists currently defined
AT ALLOCATEbreakpoints. APPEARANCE- Lists currently defined
AT APPEARANCEbreakpoints. CALL- Lists currently defined
AT CALLbreakpoints. CHANGE- Lists currently defined
AT CHANGEbreakpoints. This displays the storage address and length for allAT CHANGEsubjects, and shows how they were specified (if other than by the%STORAGEfunction). DATE- Lists currently defined
AT DATEbreakpoints. DELETE- Lists currently defined
AT DELETEbreakpoints. ENTRY- Lists currently defined
AT ENTRYbreakpoints. EXIT- Lists currently defined
AT EXITbreakpoints. GLOBAL- Lists currently defined
AT GLOBALbreakpoints for the specifiedAT-condition. LABEL- Lists currently defined
AT LABELbreakpoints. LINE- Lists currently defined
AT LINEorAT STATEMENTbreakpoints.LINEis equivalent toSTATEMENT. LOAD- Lists currently defined
AT LOADbreakpoints. OCCURRENCE- Lists currently defined
AT OCCURRENCEbreakpoints. OFFSET- Lists currently defined
AT OFFSETbreakpoints. PATH- Lists currently defined
AT PATHbreakpoints. STATEMENT- Is equivalent to
LINE. SUSPENDED- Lists all suspended breakpoints.
TERMINATION- Lists currently defined
AT TERMINATIONbreakpoint.
If the AT command type (for example, LOAD)
is not specified, LIST AT lists all currently defined
breakpoints (both disabled and enabled).
Usage notes
- To display a global breakpoint, you can specify an asterisk (*)
with the
LIST ATcommand or you can specify aLIST AT GLOBALcommand. For example, if you want to display anAT ENTRY *breakpoint, specify:LIST AT ENTRY *; or LIST AT GLOBAL ENTRY;If you have only a global breakpoint set and you specify
LIST AT ENTRYwithout the asterisk (*) orGLOBALkeyword, you get a message saying there are no such breakpoints. - The
LIST ATcommand cannot be used while you replay recorded statements by using thePLAYBACKcommands.
Examples
- Display information about enabled breakpoints defined at block
entries.
LIST AT ENABLED ENTRY; - Display information about global DATE breakpoint entries.
LIST AT DATE *; - Display breakpoint information for all disabled
AT CHANGEbreakpoints within the currently executing program.LIST AT DISABLED CHANGE; - The current programming language setting is C. Here are some
assorted
LIST ATcommands.
orLIST AT LINE 22;
orLIST AT OCCURRENCE SIGSEGV;LIST AT CHANGE structure.un.m;
Refer to the following topics for more information related to the material discussed in this topic.
- Related references
- AT command
