×

Interested Variable Mechanism

Interested Variable Mechanism

It is a must to provide progress to the process synchronization mechanism.

In variable mechanism, if there is a process that doesn’t need to enter into the critical section, then due to this, the other process which wants to execute in the critical section will not be considered. Due to this, other processes may wait for a long time even though there is no process that is present in the critical section. This problem can be solved by using an additional variable along with the turn variable. And by doing this, we can solve the problem of progress.

In the Interested Variable Mechanism, for progress, we use an additional Boolean variable.

To understand the concept of Interested Variable, the pseudocode of the program is given below:

For Process Pa

Non-CS Int[a] = T; While ( Int[b] = = T ) ; Critical Section Int[I] = F;    

For Process Pb

Non-CS Int [1] = T ; While ( Int[b] = = T ); Critical Section Int[b]= F ;

 In the Interested Variable Mechanism, we use an additional variable, which is known as 'interested' variable. The interested variable is a kind of Boolean Variable. Using the Boolean variable, we store the interest of the processes so that the process gets to enter into the critical section.

In the interested variable mechanism, if there is a process that needs to enter into the critical section, then the process checks that in the entry section, another process is interested or not to enter into the critical section. Then the process will wait till the other process is interested in remaining into the critical section.

In the exit section, we set the process value of the interested variable as false so that other process gets the opportunity to enter into the critical section.

The below table provides the values of the interested variable for the processes Pa and Pb and the chance of process to get enter into the critical section in the different scenarios.

Interest [Pa] Interest [Pb] Process which get the chance
           True           True The process that first shows interest
            True            False           Pa
            false             True            Pb
            false            False             x

Now, based on the requirement, we analyze the Interested Variable Mechanism:

  1. Mutual Exclusion: -It provides Mutual Exclusion because if there is a process that is interested in entering into the critical section, then the other process waits until the process becomes uninterested. So in this way, at the same time, no two processes will enter into the critical section.
  2. Progress: - Progress is also provided in the Interested Variable Mechanism because if a process doesn't want to enter into the critical section, then it doesn't affect other processes to enter into the critical section.
  3. Bounded Waiting: - We analyze bounded waiting with the help of two processes that is Process Pa and Pb. Both processes are cooperative processes. The Process Pa and Pb are both interested in entering into the critical section.

The below table shows the instruction executed by the process:

 Process Pa   Process Pb   Process Pa    Process Pb
1.Int [Pa] = True 2.while (Int [Pb] = = True); 3. Critical Section   1.Int [Pb] = True 2.while (Int [Pa] = = True); 1.Int [Pa] = False 2.Int [Pa] = True 3.while (Int [Pb] = = True); // waiting for Pb 1.while (Int [Pa] = = True); // waiting for Pb

In starting, the value of the interested variable for process Pa and Pb is false. In the above table, we can see that the Process Pa defines the interest to enter into the critical section.

The process Pa first set the value of interested variable True, and after setting the value, it checks for the Process Pb means it checks Pb is interested or not to enter into the critical section. So, the value of the interested variable for other processes is false; therefore, the Process Pa will enter inside the critical section.

During this, the Pa process gets preempted and schedule the Process Pb. Process Pb is a kind of cooperative process; that’s why it also needs to enter into the critical section. Process Pb shows its interest in entering into the critical section by setting the value of interest variable True.

The process Pb also examine that other processes want to enter inside the critical section or not. As we already know that the process Pa is preempted, and the value of the interested variable is true. It means the Process Pa also again want to execute in the critical section. That's why the Process Pb will not get the opportunity to enter into the critical section, and it will get trapped in the while loop.

During this, the CPU changes the state of Process Pa from a blocked state to the running state. Process Pa is not completing its critical section, so the process Pa first completes its critical section execution, and after essential completion of the section, it exits from the critical section by setting the value of interest value as False.

There is a possibility of one case, i.e., if a Process Pa further needs to enter into the critical section and set value as true to the interested variable, and after setting the value, it verifies that the value of interest variable for Process Pb is True or not. The value of the interested variable for Process Pb's is found true. So, the Process Pa will get trapped in the while loop and will wait for Process Pb to become uninterested.

Till now, the Process Pb is trapped in the while loop and waiting for the Process Pa to become make interested variable value as False. Hence in this condition, the Process Pa and Pb are waiting for each other, and in this situation, no Process will get enter into the critical section.

 Hence, a deadlock occurred.

In the case of deadlock, bounded waiting can’t be offered. So, in this way, we can say that in the interested variable mechanism, there is no guarantee of deadlock.

Architectural Neutrality: - Interested Variable Mechanism offers architectural neutrality because it is a software mechanism that is executed at the user mode.


Related Topics

Advantages of Operating System

What is an Operating System?   An operating system is an interface that helps to communicate with the user and the computer hardware. Operating systems are used for file management, memory...

3 minutes read.

Advantages of UNIX Operating System

What is UNIX OS? UNIX is a family of multitasking, multiuser operating systems that are used on a wide variety of computer platforms. It was developed in the late 1960s and...

4 minutes read.

Process State in OS

The Process passes from different states, from its formation to completion. The following are the states of the Process. NewReadyRunningBlock or WaitTerminated or CompletedSuspend readySuspend wait or suspend blocked 1. New: - The state in which a process...

2 minutes read.

Process Scheduling in Operating System

Process Scheduling is an essential component of a Multiprogramming Operating System. So now let’s understand how it works by taking a real-life example. Suppose that you want to call someone...

6 minutes read.

Difference between C-LOOK and C-SCAN Disk Scheduling Algorithm

Disk scheduling is used by operating systems to arrange the arrival of I/O requests to the disc. I/O scheduling is another name for disc scheduling. Disk scheduling is necessary because...

4 minutes read.

Disk Scheduling Algorithms

Disk Scheduling Algorithms Disk scheduling algorithms are the algorithms that are used for scheduling a disk. Generally, the scheduling refers to a time-table for completing any task or a job. With the help...

2 minutes read.

Starvation in Operating System

Starvation is one of the major problems occurring when resource management is not done properly. This problem arises in the operating system when the resources are not being allocated for...

4 minutes read.

Swapping in Operating System

Swapping in operating systems refers to temporarily transferring a program or process from main memory to a secondary storage device, such as a hard drive or solid-state drive when there...

4 minutes read.

Interested Variable Mechanism

Interested Variable Mechanism It is a must to provide progress to the process synchronization mechanism. In variable mechanism, if there is a process that doesn’t need to enter into the critical section, then due...

5 minutes read.

Round-Robin Scheduling Algorithm in OS

Round-Robin is a Preemptive Scheduling Algorithm and is the most commonly used algorithm in CPU Scheduling.In this, each Process is assigned with a fix time interval to execute, which is...

5 minutes read.

File Access Methods in Operating System

File Access Methods in OS There are various types of file access methods in the operating system: Sequential Access MethodDirect Access MethodIndex Sequential Access Method Sequential Access Method: - Sequential Access Method is...

3 minutes read.

Deadlock Avoidance

Deadlock Avoidance In an operating system, for deadlock avoidance, we perform the following: We only grant the request of the resources if the resulting state of the system will not cause any deadlock in the...

3 minutes read.

Linux Operating System

What is Linux? The Linux operating system is used on various devices, including cellphones, automobiles, supercomputers, household gadgets, personal computers, and business servers. You can find Linux on your phones, thermostats, vehicles,...

8 minutes read.

What is Context Switching

Context Switching is the switching of CPU from one process to another process. Context switching means storing the process state so that we can reload the process when needed, and the execution...

3 minutes read.

Deadlock Prevention in Operating System

Deadlock Prevention The conditions which we used for deadlock prevention are: Mutual ExclusionHold and WaitNo PreemptionCircular Wait 1. Mutual Exclusion: - From the resource point of view, the mutual exclusion means that simultaneously more...

4 minutes read.

Monitors in Operating System

Monitors in Operating System Monitors are used for process synchronization. With the help of programming languages, we can use a monitor to achieve mutual exclusion among the processes. Example of monitors:...

3 minutes read.

Batch Operating System

Computers were once quite huge devices that operated from a console. Tape drives, punch cards, line printers were often utilized for the output, and tape drivers or card readers for...

4 minutes read.

Ubuntu Operating System

Ubuntu Operating System Ubuntu is an open-source and a Linux based operating system. Ubuntu is developed for the Network Servers, Computers, and Smartphones. The Ubuntu operating system was developed by Canonical...

3 minutes read.

Multitasking Operating Systems

An operating system is the fundamental piece of software that enables a computer system to function and execute a command as intended. The user interface, hardware, and every other piece...

7 minutes read.

Need of Operating System

There are various needs of operating system: Managing Input-Output UnitThe Operating system as a platform for application programsMultitaskingConsistent user interface Managing Input-Output Unit: - With the help of the operating system, the...

2 minutes read.