Guardian Programmer's Guide

Table Of Contents
Glossary
Guardian Programmer’s Guide 421922-014
Glossary - 24
process sequence number
process sequence number. A subpart of a process file name that allows the process to be
identified over time.
process time. The amount of time that a process has spent in the active substate.
process timer. A clock that measures process execution time.
processor clock. A hardware timer on each CPU module that keeps CPU time; the number
of microseconds since cold load.
processor time. The time represented by a CPU clock.
program. See program file.
program file. An executable object code file containing a program’s main routine plus
related routines statically linked together and combined into the same object file. Other
routines shared with other programs might be located in separately loaded libraries. A
program file can be named on a RUN command; other code files cannot. See also
object code file.
ready list. A linked list of PCBs of ready processes.
ready process. A process that is prepared to become active.
read-only data segment. An extended data segment, the contents of which a process can
read but cannot alter. The contents of a read-only data segment can be shared across
CPUs.
record block. A collection of data records written to or read from a mass storage medium
using one I/O operation. Record blocks are usually used with magnetic tape to speed
I/O.
record lock. A lock held by a process or a transaction that restricts access to that record by
other processes.
reduced instruction-set computing (RISC). A CPU architecture based on a relatively
small and simple instruction set, a large number of general-purpose registers, and an
optimized instruction pipeline that supports high-performance instruction execution.
Contrast with complex instruction-set computing (CISC).
register-exact point. A synchronization location within an accelerated object file at which
both of these statements are true:
All live TNS registers plus all values in memory are the same as they would be if the
object file were running in TNS mode or TNS interpreted mode or on a TNS system.
All accelerator code optimizations are ended.
Register-exact points are a small subset of all memory-exact points. Procedure entry
and exit locations and call-return sites are usually register-exact points. All places