Process Control Block in OS (original) (raw)

Last Updated : 11 May, 2026

A Process Control Block (PCB) is a data structure used by the operating system to keep track of process information and manage execution. It helps the OS monitor and control process execution.

frame_16

PCB

The Process Control Block (PCB) is stored as a part of OS so that normal users cannot access it. This is because it holds important information about the process. Some operating systems place the PCB at the start of the kernel stack for the process, as this is a safe and secure spot.

frame_17

Applications