Previous Topic: SyntaxNext Topic: CSECTINCLUDE


Parameters

CSECTEXCLUDE supports the following parameters:

csect

CSECT name excluded from processing.

pattern

Specifies a pattern. CSECT names that match this pattern are excluded from processing.

*—An asterisk signifies any number of characters starting in this position.

%—A percent sign is a placeholder for a character in the specific position.

startcsect

Specifies the starting CSECT name when identifying a range of CSECTs to exclude from processing. Specify an asterisk (*) to exclude all CSECTs less than the endcsect. Startcsect can be any valid pattern name.

endcsect

Specifies the ending CSECT name when identifying a range of CSECTs to exclude from processing. Specify an asterisk (*) to exclude all CSECTs greater than the startcsect. Endcsect can be any valid pattern name.

Example

This example creates a CSECT cross-reference report of all CSECTs in a load library excluding all CSECTs beginning with CEE.

LOADINFO,
  CSECTEXCLUDE(CEE*), 
  CSECT