Syntax:
call "CBL_EXEC_RUN_UNIT" using command-line
by value command-line-len
by reference run unit-id
by value stack-size
flags
returning status-code
Parameters:
|
Using call prototype (see Key) |
Picture |
command-line
|
pic x(n). |
pic x(n). |
command-line-len
|
cblt-os-size. |
pic x(4) comp-5. |
run unit-id
|
cblt-x8-comp5. |
pic x(8) comp-5. Must be level 01. |
stack-size
|
cblt-os-size. |
pic x(4) comp-5. |
flags
|
cblt-os-flags. |
pic x(4) comp-5. |
status-code
|
See Library Routines - Key |
On Entry:
-
command-line
- The command passed to the new . This should be the program-name followed by any parameters.
-
line-length
- The length of the command line.
-
stack-size
- This parameter is ignored.
-
flags
- A 32-bit word indicating how the new run unit is created as follows:
- Bit 0
-
0 |
CBL_EXEC_RUN_UNIT returns to the caller immediately after creating the child process. |
1 |
CBL_EXEC_RUN_UNIT waits for the new run unit to complete before returning to the caller. |
- Bit 1
- Ignored.
- Bit 2
-
0 |
The newly created run unit inherits the caller's console for screen I/O. Only one member of the coru should access this console at a time, otherwise unpredictable results may be encountered. |
1 |
The newly created run unit has a new console for terminal I/O allocated to it. This console is independent from the parent and can be used for screen I/O. |
- Bits 3-31
- Reserved - must be set to 0.
On Exit:
-
run unit-id
- If bit 0 of flags is not set, the unique handle identifying the new run-unit. If bit 0 of flags is set, this value is unchanged.
-
status-code
- Status of operation:
0 |
Success |
157 |
Out of memory |
181 |
Invalid parameter |
200 |
Internal logic error |
255 |
Called program not found |
Other non-zero |
Returned error code from the executed program |
Comments:
The run unit that makes the call is known as the parent, while the run unit created is known as the child. When the child is created it inherits certain attributes from its parent. The attributes inherited by the child are copies of the attributes in the parent at the exact time of the call; any changes made to the attributes of the parent after the call are not reflected in the child's attributes. Similarly, any changes made to the child's attributes are not reflected in the parent's attributes.
Bit 1 flag controls which attributes of the parent are inherited by the child.
In the .NET environment, the run unit created by this command does not inherit any COBOL or run-time switches, or environment variables. CBL_EXEC_RUN_UNIT does not open libraries for the run unit it creates.
The set of run units containing the initial run unit and all run units created from it is known as the coru.
You should be aware of the following when using run units: