MPOPTS parameter: Difference between revisions
Jump to navigation
Jump to search
Line 25: | Line 25: | ||
<table> | <table> | ||
<tr class="head"><th>Setting</th><th>Meaning</th></tr> | <tr class="head"><th>Setting</th><th>Meaning</th></tr> | ||
<tr><th align="right"><var>X'01'</var></th><td>Loops containing serial statements</td></tr> | <tr><th align="right"><var>X'01'</var></th><td><var>[[Record_loops#FOR_EACH_RECORD_statement|Loops]]</var> containing serial statements</td></tr> | ||
<tr><th align="right"><var>X'02'</var></th><td>Calls to subroutines containing serial statements</td></tr> | <tr><th align="right"><var>X'02'</var></th><td>Calls to subroutines containing serial statements</td></tr> | ||
<tr><th align="right"><var>X'04'</var></th><td>No $functions.</td></tr> | <tr><th align="right"><var>X'04'</var></th><td>No $functions.</td></tr> |
Revision as of 15:12, 4 August 2015
MP user language options
Summary
- Default value
- X'7F'
- Parameter type
- System
- Where set
- On User 0's parameter line
- Related products
- All
- Introduced
- Model 204 V4.1 or earlier
Description
The MPOPTS parameter setting is used to tune system multiprocessing. The SOUL compiler strategy offloads as much work as possible to subtasks. You can set the MPOPTS parameter to modify this strategy for a particular section of code, particularly:
- Nested loops
- MP=NO $functions
- Mixed mode statements
This parameter applies only to z/OS. Valid settings of MPOPTS are:
Setting | Meaning |
---|---|
X'01' | Loops containing serial statements |
X'02' | Calls to subroutines containing serial statements |
X'04' | No $functions. |
X'08' | STORE RECORD and DELETE RECORD statements |
X'20' | READ, PRINT SCREEN, PRINT MENU, and REREAD statements |
X'40' | READ IMAGE and WRITE IMAGE statements |
X'80' | Produce compilation warning messages for serial statements |
An MP OPTIONS SOUL statement can temporarily override the MPOPTS parameter. For more information on multiprocessing concepts and parameters, refer to Multiprocessing (MP/204).