SET LDD command
Controls how debug data is loaded for assemblies containing multiple
CSECTs. The initial setting is SINGLE.
SINGLE- Indicates that subsequent
LOADDEBUGDATA(LDD) commands that load debug data for a CU that was assembled with other CSECTs are to load the debug data for the specified CU only. ALL- Indicates that subsequent
LOADDEBUGDATA(LDD) commands that load debug data for a CU that was assembled with other CSECTs are to load the debug data for all CUs in the assembly.
Usage notes
- This command affects both deferred and non-deferred
LDDcommands. - If the target of the
LDDis a LangX COBOL CU, the command has no effect. - If
SET LDD ALLis in effect and you do the following tasks, you must enter a separateSET SOURCEcommand for each CU in the assembly for which you previously entered anLDDcommand:- You enter an
LDDcommand for more than one CU in the same assembly. - The debug data could not be found for these CUs.
- Subsequently, you enter a
SET SOURCEcommand for one of these CUs.
- You enter an
- You can use this command in remote debug mode.
Examples
- Load debug data for all CSECTs in an assembly that contains CSECTs
CS1, CS2, and CS3:
SET LDD ALL; LDD CS1; - Load debug data for CSECT’s CS1 and CS3 in an assembly that contains
CSECTs CS1, CS2, and CS3:
SET LDD SINGLE; LDD (CS1,CS3);
Refer to the following topics for more information related to the material discussed in this topic.
- Related tasks
- IBM® z/OS® Debugger User's Guide
- Related references
- LOADDEBUGDATA command
- z/OS Debugger commands supported in remote debug mode
