3.1.1. Process Contents¶
- An address space
- A program
- A execution engine (program counter, …)
- Data
- Resources
- Process control block (PCB) with process identifier (PID)
3.1.1.1. A Classic Process (one thread)¶
3.1.1.2. The Address Space¶
3.1.1.3. Process Control Block (PCB)¶
The process control block is a data structure for each process holding:
- Register values
- Logical state
- Page map table mapping logical addresses to physical addresses
- Type & location of resources it holds
- List of resources it needs
- Parent process identification
- Security keys
- etc.