COBOL Manual for TNS/E Programs (H06.03+)

Glossary
HP COBOL Manual for TNS/E Programs520347-003
Glossary-36
TNS/R native object code
TNS/R native object code. The MIPS RISC instructions that result from processing
program source code with a TNS/R native compiler. TNS/R native object code
executes only on TNS/R systems, not on TNS systems or TNS/E systems.
TNS/R native object file. An object file created by a TNS/R native compiler that contains
MIPS RISC instructions and other information needed to construct the code spaces
and the initial data for a TNS/R native process.
TNS/R native process. A process initiated by executing a TNS/R native object file.
Compare to TNS process and TNS/E native process.
TNS/R native shared run-time library (TNS/R native SRL). A shared run-time library
(SRL) available to TNS/R native processes in both the Guardian and Open System
Services (OSS) environments. TNS/R native SRLs can be either public or private. A
TNS/R native process can have multiple public SRLs but only one private SRL.
TNS/R native user library. A user library available to TNS/R native processes in both the
Guardian and Open System Services (OSS) environments. A TNS/R native user library
is implemented as a special private TNS/R native shared run-time library (TNS/R
native SRL).
top margin. An empty area of a logical page that precedes the page body.
trap. A software interrupt that provides a way of handling certain events, such as detection
of a hardware (or software) fault, a timer expiration, or a lack of system resources. A
trap is often an indication of a run-time event that requires immediate attention. Most
such events preclude continuing the interrupted instruction stream. Traps are
generated for TNS Guardian processes. (native Guardian processes and all OSS
processes receive signals instead.) An Instruction Failure trap indicates that an
instruction cannot executed because the instruction or its data are invalid. Compare to
signal.
truth value. The result of evaluating a condition
to determine one of two values: TRUE or
FALSE.
unary operator. A plus sign (+) or minus sign (-) that precedes a variable
or a left
parenthesis (but does not follow a variable, numeric literal, or right parenthesis) in an
arithmetic expression and that has the effect of multiplying the expression by +1 or -1,
respectively.
unstructured file. A disk file organized as a byte stream. Each byte is directly addressable
by an application, which manages its own access to the file contents. In COBOL,
unstructured files are limited to sequential organization and access with fixed-length
records. The COBOL run-time routines handle any blocking and deblocking for
unstructured files, which can improve performance.
user-defined word. A COBOL word that you supply within the format of a clause or
statement.