wisemonkeys logo
FeedNotificationProfileManage Forms
FeedNotificationSearchSign in
wisemonkeys logo

Blogs

PROCESS CONTROL BLOCK IN OS

profile
Shrutik Dagha
Jul 11, 2023
0 Likes
0 Discussions
56 Reads

The process control block represents a process in the operating system. A process control block is also known as a task control block. It’s a repository of information associated with a specific process.

Introduction

We come across many processes running at the same time in our operating system. Every process has some information and execution instructions accompanied. These instructions can be a code execution or a list of devices(like a printer) that will be used to interact, during the execution of a process. So, there arises a need for a data structure that can store every information of a process, known as a process control block (PCB).

Definition

When the process is created by the operating system it creates a data structure to store the information of that process. This is known as Process Control Block (PCB).

Process Control block (PCB) is a data structure that stores information of a process.

PCB in OS

PCBs are stored in specially reserved memory for the operating system known as kernel space.

**Note: **The Random Access Memory (RAM) can be logically divided into two distinct regions namely - the kernel space and the user space. kernel space is the core of the operating system. It normally has full access to all memory and machine hardware and it cant be accessed by the user.

PCB is unique for every process which consists of various attributes such as process ID, priority, registers, program counters, process states, list of open files, etc.

Role of Process Control Block

It's the job of the operating system to assign a CPU to a process as the process doesn't need a CPU all the time. Let's take an example of the input/output process, they are only used by the CPU when triggered.

The role of the process control block arises as an identification card for each process. The Operating System doesn't know which process is which, until Operating System refers through the PCB of every process.

For Example:, there are MS word processes, pdf processes, printing processes, and many background processes are running currently on the CPU. How will OS identify and manage each process without knowing the identity of each process?

So, here PCB comes into play as a data structure to store information about each process.

Therefore, whenever a user triggers a process (like print command), a process control block (PCB) is created for that process in the operating system which is used by the operating system to execute and manage the processes when the operating system is free.

Structure of Process Control Block

The process control block contains many attributes such as process ID, process state, process priority, accounting information, program counter, CPU registers`, etc for each process.

1. Process ID:

When a new process is created by the user, the operating system assigns a unique ID i.e a process-ID to that process. This ID helps the process to be distinguished from other processes existing in the system.

The operating system has a limit on the maximum number of processes it is capable of dealing with, let's say OS can handle atmost N processes at a time.

So, process-ID will get the values from 0 to N-1.

First process will be given ID0.

Second process will be given ID 1.

It continues till N-1.

Now if a new process is created after process(N-1) then Operating System will allot ID 0 to this new process considering the older process at id 0 is already terminated. This is one of the schemes for assigning the process ids.

There is another scheme of assignment where the process IDs are not allocated in ascending order.

Let's say a single PCB requires X bytes of memory and in total there can be N processes allowed at a time. Then, the operating system will reserve N*X bytes for all the PCBs.

These PCBs are numbered from 0 to N-1. Please note here we are giving IDs to PCBs and not to the processes.

Now whenever a process is triggered by the user a free PCB slot is allotted to that process and the process ID of that process will be the same as the PCB slot number. So, the operating system maintains a chain of free PCB slots. If the chain is empty no new process can be created.

2. Process State:

A process, from its creation to completion goes through different states. Generally, a process may be present in one of the 5 states during its execution:

Process State

New: This state contains the processes which are ready to be loaded by the operating system into the main memory.

Ready: This state contains the process which is both ready to be executed and is currently in the main memory of the system. The operating system brings the processes from secondary memory(hard disk) to main memory(RAM). As these processes are present in the main memory and are waiting to be assigned to the CPU, the state of these processes is known as Ready state.

Running: This state contains the processes which are currently executed by the CPU in our system. If there is a total x CPU in our system, then a maximum number of running processes for a particular time is also x.

Block or wait: A process from its running state may transition to a block or wait for state depending on the scheduling algorithm or because of the internal behavior of the process (process explicitly wants to wait).

Termination: A process that completes its execution comes to its termination state. All the contents of that process(Process control block) will also be deleted by the operating system.

3. Process Priority:

Process priority is a numeric value that represents the priority of each process. The lesser the value, the greater the priority of that process. This priority is assigned at the time of the creation of the PCB and may depend on many factors like the age of that process, the resources consumed, and so on. The user can also externally assign a priority to the process.

4. Process Accounting Information:

This attribute gives the information of the resources used by that process in its lifetime. For Example: CPU time connection time, etc.

5. Program Counter:

The program counter is a pointer that points to the next instruction in the program to be executed. This attribute of PCB contains the address of the next instruction to be executed in the process.

6. CPU registers:

A CPU register is a quickly accessible small-sized location available to the CPU. These registers are stored in virtual memory(RAM).

6. Context Switching:

A context switching is a process that involves switching the CPU from one process or task to another. It is the process of storing the state of a process so that…

 

 

NAME -SHRUTIK DAGHA

SAP ID -53003220045

DIV -A

COURSE-SYBSCIT


Comments ()


Sign in

Read Next

Is Social Media Marketing The Next Wave Of Digital Marketing?

Blog banner

Importance Of Education.

Blog banner

Deadlock

Blog banner

Interrupts in operating system.

Blog banner

Method of Evaluating Information Security Level in an Organization

Blog banner

Cache memory

Blog banner

Digital Balance: Keeping Children Mindful in the Screen Age

Blog banner

Depression

Blog banner

Interrupts - Types, Working & Importance

Blog banner

Microsoft powerpoint presentation

Blog banner

Visualization in Data Science

Blog banner

MAILFENCE

Blog banner

EdTech (Education Technology)

Blog banner

Operating system

Blog banner

Excel records

Blog banner

CoWIN

Blog banner

Operating System

Blog banner

15 Websites that will make your life easier ...!!!

Blog banner

Importance of Website

Blog banner

MEMORY MANAGEMENT FILE

Blog banner

Internet of Things and cyber security

Blog banner

CYBER SECURITY CHALLENGES

Blog banner

Full Disk Encryption

Blog banner

Microsoft Windows Overview

Blog banner

BENIFITS OF YOGA

Blog banner

Tableau

Blog banner

Threads

Blog banner

DISK SCHEDULING

Blog banner

Eating Well With Meal Maharaj on Busy Workdays Without Cooking

Blog banner

World’s rarest passport owned by 500 people.

Blog banner

Why Friendship at Work is Important

Blog banner

The Golden Temple , Amritsar

Blog banner

Privacy-Enhancing Computation Techniques

Blog banner

Simple Ways of Avoiding Basic Mistakes in Smart Phone Security

Blog banner

Data Visualization – Importance and tools (Tableau, Power BI)

Blog banner

Security in Cloud Computing

Blog banner

I/O Buffering

Blog banner

CYBERBULLYING: Negative comments!

Blog banner

Why Data Privacy Is Changing Online Advertising

Blog banner

File management

Blog banner

Brain wash of social media

Blog banner

IO Buffers

Blog banner