FAQ
Glossary

IPL (Initial Program Load)

z/OS initialization, or an Initial Program Load (IPL), is the act of loading a copy of the operating system from disk into the processor’s real storage and executing it. This process essentially consists of: –    System and storage initialization, including the creation of system component address spaces –    Master scheduler […]
Question keyboard key
MVS

How to compress LLA-managed libraries

Sometimes a PDS library needs to be compressed to reclaim the free space caused by member deletions. The recommended procedure for compressing an LLA-managed library is: 1. Create a new CSVLLAxx member that includes a REMOVE statement identifying the library that needs to be compressed (ex: CSVLLA02). REMOVE(SYS1.EXAMPLE.FILE) 2. Then […]
Question keyboard key
MVS

The Paging Process

In addition to the DAT hardware and the segment and page tables required for address translation, paging activity involves a number of system components to handle the movement of pages and several additional tables to keep track of the most current version of each page. To understand how paging works, […]
Question keyboard key
Glossary

Frames, Pages and Slots

When a program is selected for execution, the system brings it into virtual storage, divides it into pages of 4 kilobytes (4K), and transfers the pages into real storage for execution. To the programmer, the entire program appears to occupy contiguous space in storage at all times. Actually, not all […]