11 Dec 2019

  • December 11, 2019
  • Amitraj
Process Control Block (PCB)

 A process control block is a data structure maintained by the operating system for every process. The PCB is identified by an integer process ID (PID). A PCB keeps all the information needed to keep track of a process as listed below:-


Structure of control block

 
1. Process state
The current state of the process i.e. whether it is ready, running, waiting or whatever.


2. Process privillege 
This is required to allow/disallow access to system resources.


3. Process ID
unique identification for each of the process in the OS.


4. Pointer 
A pointer to parent process.


5. Program counter 
program counter is a pointer to the address to the next instruction to be executed for this process.


6. CPU Register 
Various CPU registers where process need to be stored for execution for running state.


7. CPU scheduling info 
 process priority and other scheduling information which is required to schedule the process.


8. Memory Management Information
 The memory management information includes the page tables or the segment tables depending on the memory system used. It also contains the value of the base registers, limit registers etc.


9. Accounting information
The time limits, account numbers, amount of CPU used, process numbers etc. are all a part of the PCB accounting information.


10. I/O Status Information
This information includes the list of I/O devices used by the process, the list of files etc.


Related Posts:

  • kernel modules in Linux OS kernel modules  • Sections of kernel code that can be compiled, loaded, and unloaded independent of the rest of the kernel. • A kernel module may typically implement a device driver, a file system, or a networking pro… Read More
  • Network Structure in Linux Network Structure 1. Networking is a key area of functionality for Linux. –> It supports the standard Internet protocols for UNIX to UNIX communications –> It also implements protocols native to nonUNIX operating sy… Read More
  • Design Principles in Linux OS Design Principles in Linux OS -> Linux is a multi-user, multi-tasking system with a full set of UNIX-compatible tools. -> The Linux file system follows the traditional UNIX semantics, and the UNIX standard network mo… Read More
  • Components Of Linux Operating System | Basic Shell Command in Linux Components Of Linux Operating System Linux operating system has primarlly three key components:- 1. Kernel  kernel is the core part of linux. it is responsible for all major activities of this operating system. It … Read More
  • Process Management in Linux Operating System Process Management in Linux Operating System Process management is a case in point. Linux creates a process whenever a program is launched, either by you or by Linux. This process is a container of information about how tha… Read More

Translate

Popular Posts