Definition
Primary Process Table
The primary process table is a kernel data structure containing pointers to every active process’s context. It maps a process identifier (PID) to its PCB (or process image).
The OS uses this table to:
- Track: Monitor the lifecycle of all processes
- Dispatch: Locate saved context during a process switch