MPOPTS parameter

From m204wiki
Jump to navigation Jump to search

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:

SettingMeaning
X'01' Loops containing serial statements
X'02' Calls to subroutines containing serial statements
X'04' MP=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).