The tcflow callable service suspends or resumes data flow on a terminal.
Operation | Environment |
---|---|
Authorization: | Supervisor or problem state, any PSW key |
Dispatchable unit mode: | Task |
Cross memory mode: | PASN = HASN |
AMODE (BPX1TFW): | 31-bit |
AMODE (BPX4TFW): | 64-bit |
ASC mode: | Primary mode |
Interrupt status: | Enabled for interrupts |
Locks: | Unlocked |
Control parameters: | All parameters must be addressable by the caller and in the primary address space. |
|
AMODE 64 callers use BPX4TFW with the same parameters.
The name of a fullword that contains the file descriptor for the terminal device.
Constant | Description |
---|---|
TCIOFF | Send a STOP character to the terminal to stop the terminal from sending any further input. |
TCION | Send a START character to the terminal to start the terminal sending input. |
TCOOFF | Suspend output to the terminal. |
TCOON | Resume output to the terminal. |
The name of a fullword in which the tcflow service returns 0 if the request is successful, or -1 if it is not successful.
Return_code | Explanation |
---|---|
EBADF | File_descriptor does not describe a valid open file. |
EINTR | A signal interrupted the call. |
EINVAL | The Action parameter does not contain one of the expected values. |
EIO | The process group of the process that is issuing the function is an orphaned, background process group, and the process that is issuing the function is not ignoring or blocking SIGTTOU. |
ENOTTY | File_descriptor is not associated with a terminal. |
The name of a fullword in which the tcflow service stores the reason code. The tcflow service returns Reason_code only if Return_value is -1. Reason_code further qualifies the Return_code value. For the reason codes, see z/OS UNIX System Services Messages and Codes.
The following table defines the processing of the SIGTTOU signal when the tcflow service is called from a background process against a controlling terminal:
SIGTTOU processing | Expected behavior |
---|---|
Default or signal handler | The SIGTTOU signal is generated. |
Ignored or blocked | The SIGTTOU signal is not sent. |
There are no restrictions on the use of the tcflow service.
For an example using this callable service, see BPX1TFW (tcflow) example.