Computer Science Engineering (CSE) Exam  >  Computer Science Engineering (CSE) Notes  >  Operating System  >  Process Synchronization & Critical Section

Process Synchronization & Critical Section | Operating System - Computer Science Engineering (CSE) PDF Download

Introduction of Process Synchronization

On the basis of synchronization, processes are categorized as one of the following two types:

  • Independent Process: Execution of one process does not affects the execution of other processes.
  • Cooperative Process: Execution of one process affects the execution of other processes.

Process synchronization problem arises in the case of Cooperative process also because resources are shared in Cooperative processes.

Race Condition

When more than one processes are executing the same code or accessing the same memory or any shared variable in that condition there is a possibility that the output or the value of the shared variable is wrong so for that all the processes doing the race to say that my output is correct this condition known as a race condition. Several processes access and process the manipulations over the same data concurrently, then the outcome depends on the particular order in which the access takes place.
A race condition is a situation that may occur inside a critical section. This happens when the result of multiple thread execution in the critical section differs according to the order in which the threads execute.
Race conditions in critical sections can be avoided if the critical section is treated as an atomic instruction. Also, proper thread synchronization using locks or atomic variables can prevent race conditions.

Critical Section Problem
Critical section is a code segment that can be accessed by only one process at a time. Critical section contains shared variables which need to be synchronized to maintain consistency of data variables.

Process Synchronization & Critical Section | Operating System - Computer Science Engineering (CSE)

In the entry section, the process requests for entry in the Critical Section.

Any solution to the critical section problem must satisfy three requirements:

  • Mutual Exclusion: If a process is executing in its critical section, then no other process is allowed to execute in the critical section.
  • Progress: If no process is executing in the critical section and other processes are waiting outside the critical section, then only those processes that are not executing in their remainder section can participate in deciding which will enter in the critical section next, and the selection can not be postponed indefinitely.
  • Bounded Waiting: A bound must exist on the number of times that other processes are allowed to enter their critical sections after a process has made a request to enter its critical section and before that request is granted.

Peterson’s Solution

Peterson’s Solution is a classical software based solution to the critical section problem.

In Peterson’s solution, we have two shared variables:

  • boolean flag[i]: Initialized to FALSE, initially no one is interested in entering the critical section
  • int turn: The process whose turn is to enter the critical section.
    Process Synchronization & Critical Section | Operating System - Computer Science Engineering (CSE)

Peterson’s Solution preserves all three conditions:

  • Mutual Exclusion is assured as only one process can access the critical section at any time.
  • Progress is also assured, as a process outside the critical section does not block other processes from entering the critical section.
  • Bounded Waiting is preserved as every process gets a fair chance.

Disadvantages of Peterson’s Solution

  • It involves Busy waiting
  • It is limited to 2 processes.

TestAndSet

TestAndSet is a hardware solution to the synchronization problem. In TestAndSet, we have a shared lock variable which can take either of the two values, 0 or 1.

  • 0 Unlock
  • 1 Lock

Before entering into the critical section, a process inquires about the lock. If it is locked, it keeps on waiting until it becomes free and if it is not locked, it takes the lock and executes the critical section.
In TestAndSet, Mutual exclusion and progress are preserved but bounded waiting cannot be preserved.

Question: The enter_CS() and leave_CS() functions to implement critical section of a process are realized using test-and-set instruction as follows:
int TestAndSet(int &lock) {
    int initial = lock;
    lock = 1;
    return initial;
}
void enter_CS(X)
{
  while test-and-set(X) ;
}
void leave_CS(X)
{
  X = 0;
}
In the above solution, X is a memory location associated with the CS and is initialized to 0. Now, consider the following statements:
I. The above solution to CS problem is deadlock-free
II. The solution is starvation free.
III. The processes enter CS in FIFO order.
IV. More than one process can enter CS at the same time.
Which of the above statements is TRUE?
(a) I
(b) II and III
(c) II and IV
(d) IV
Ans: a
Explanation: The above solution is a simple test-and-set solution that makes sure that deadlock doesn’t occur, but it doesn’t use any queue to avoid starvation or to have FIFO order.

Semaphores

A semaphore is a signaling mechanism and a thread that is waiting on a semaphore can be signaled by another thread. This is different than a mutex as the mutex can be signaled only by the thread that called the wait function.
A semaphore uses two atomic operations, wait and signal for process synchronization.
A Semaphore is an integer variable, which can be accessed only through two operations wait() and signal().
There are two types of semaphores: Binary Semaphores and Counting Semaphores

  • Binary Semaphores: They can only be either 0 or 1. They are also known as mutex locks, as the locks can provide mutual exclusion. All the processes can share the same mutex semaphore that is initialized to 1. Then, a process has to wait until the lock becomes 0. Then, the process can make the mutex semaphore 1 and start its critical section. When it completes its critical section, it can reset the value of mutex semaphore to 0 and some other process can enter its critical section.
  • Counting Semaphores: They can have any value and are not restricted over a certain domain. They can be used to control access to a resource that has a limitation on the number of simultaneous accesses. The semaphore can be initialized to the number of instances of the resource. Whenever a process wants to use that resource, it checks if the number of remaining instances is more than zero, i.e., the process has an instance available. Then, the process can enter its critical section thereby decreasing the value of the counting semaphore by 1. After the process is over with the use of the instance of the resource, it can leave the critical section thereby adding 1 to the number of available instances of the resource.

Critical Section in Synchronization

Critical Section:
When more than one processes access a same code segment that segment is known as critical section. Critical section contains shared variables or resources which are needed to be synchronized to maintain consistency of data variable.
In simple terms a critical section is group of instructions/statements or region of code that need to be executed atomically, such as accessing a resource (file, input or output port, global data, etc.).
In concurrent programming, if one thread tries to change the value of shared data at the same time as another thread tries to read the value (i.e. data race across threads), the result is unpredictable.
The access to such shared variable (shared memory, shared files, shared port, etc…) to be synchronized. Few programming languages have built-in support for synchronization.
It is critical to understand the importance of race condition while writing kernel mode programming (a device driver, kernel thread, etc.). since the programmer can directly access and modifying kernel data structures.
Process Synchronization & Critical Section | Operating System - Computer Science Engineering (CSE)

A simple solution to the critical section can be thought as shown below,
acquireLock();
Process Critical Section
releaseLock();
A thread must acquire a lock prior to executing a critical section. The lock can be acquired by only one thread. There are various ways to implement locks in the above pseudo code. Let us discuss them in future articles.

Process Synchronization

Process Synchronization is a technique which is used to coordinate the process that use shared Data. There are two types of Processes in an Operating Systems:-

  1. Independent Process: The process that does not affect or is affected by the other process while its execution then the process is called Independent Process. Example The process that does not share any shared variable, database, files, etc.
  2. Cooperating Process: The process that affect or is affected by the other process while execution, is called a Cooperating Process. Example The process that share file, variable, database, etc are the Cooperating Process.

Process Synchronization is mainly used for Cooperating Process that shares the resources. Let us consider an example of
Racing conditionRacing condition

It is the condition where several processes tries to access the resources and modify the shared data concurrently and outcome of the process depends on the particular order of execution that leads to data inconsistency, this condition is called Race Condition. This condition can be avoided using the technique called Synchronization or Process Synchronization, in which we allow only one process to enter and manipulates the shared data in Critical Section.

view of CS view of CS 

This setup can be defined in various regions like:

  • Entry Section: It is part of the process which decide the entry of a particular process in the Critical Section, out of many other processes.
  • Critical Section: It is the part in which only one process is allowed to enter and modify the shared variable.This part of the process ensures that only no other process can access the resource of shared data.
  • Exit Section: This process allows the other process that are waiting in the Entry Section, to enter into the Critical Sections. It checks that a process that after a process has finished execution in Critical Section can be removed through this Exit Section.
  • Remainder Section: The other parts of the Code other than Entry Section, Critical Section and Exit Section are known as Remainder Section.

Critical Section problems must satisfy these three requirements:

  1. Mutual Exclusion: It states that no other process is allowed to execute in the critical section if a process is executing in critical section.
  2. Progress: When no process is in the critical section, then any process from outside that request for execution can enter in the critical section without any delay. Only those process can enter that have requested and have finite time to enter the process.
  3. Bounded Waiting: An upper bound must exist on the number of times a process enters so that other processes are allowed to enter their critical sections after a process has made a request to enter its critical section and before that request is granted.

Process Synchronization are handled by two approaches:

  1. Software Approach: In Software Approach, Some specific Algorithm approach is used to maintain synchronization of the data. Like in Approach One or Approach Two, for a number of two process, a temporary variable like (turn) or boolean variable (flag) value is used to store the data. When the condition is True then the process in waiting State, known as Busy Waiting State. This does not satisfy all the Critical Section requirements.
    Another Software approach known as Peterson’s Solution is best for Synchronization. It uses two variables in the Entry Section so as to maintain consistency, like Flag (boolean variable) and Turn variable(storing the process states). It satisfy all the three Critical Section requirements.
    Peterson’s AlgorithmPeterson’s Algorithm
  2. Hardware Approach: The Hardware Approach of synchronization can be done through Lock & Unlock technique. Locking part is done in the Entry Section, so that only one process is allowed to enter into the Critical Section, after it complete its execution, the process is moved to the Exit Section, where Unlock Operation is done so that another process in the Lock Section can repeat this process of Execution. This process is designed in such a way that all the three conditions of the Critical Sections are satisfied.
    LockLockUsing Interrupts:  These are easy to implement. When Interrupt are disabled then no other process is allowed to perform Context Switch operation that would allow only one process to enter into the Critical State.
    InterruptsInterrupts

Test_and_Set Operation: This allows boolean value (True/False) as a hardware Synchronization, which is atomic in nature i.e no other interrupt is allowed to access. This is mainly used in Mutual Exclusion Application. Similar type operation can be achieved through Compare and Swap function. In this process, a variable is allowed to accessed in Critical Section while its lock operation is ON. Till then, the other process is in Busy Waiting State. Hence Critical Section Requirements are achieved.

The document Process Synchronization & Critical Section | Operating System - Computer Science Engineering (CSE) is a part of the Computer Science Engineering (CSE) Course Operating System.
All you need of Computer Science Engineering (CSE) at this link: Computer Science Engineering (CSE)
10 videos|99 docs|33 tests

Top Courses for Computer Science Engineering (CSE)

FAQs on Process Synchronization & Critical Section - Operating System - Computer Science Engineering (CSE)

1. What is process synchronization?
Ans. Process synchronization refers to the coordination of multiple processes or threads in a system to ensure their safe and orderly execution. It involves techniques and mechanisms to prevent race conditions, deadlocks, and other synchronization issues that may arise when multiple processes access shared resources concurrently.
2. What is meant by critical section in process synchronization?
Ans. A critical section is a section of code or a region in a program where the shared resources are accessed or modified by multiple processes. It is important to ensure that only one process executes the critical section at a time to maintain data integrity and prevent race conditions. Process synchronization techniques are used to achieve mutual exclusion and allow only one process to enter the critical section at a time.
3. What are the common problems that can occur in process synchronization?
Ans. The common problems that can occur in process synchronization include race conditions, where the output or result of the processes depends on the order of their execution; deadlocks, where two or more processes are waiting indefinitely for each other to release resources; and starvation, where a process is unable to proceed due to unfair resource allocation.
4. What are the different process synchronization techniques?
Ans. There are several process synchronization techniques used to achieve mutual exclusion and coordination among processes. Some of the commonly used techniques include locks and mutexes, semaphores, monitors, and condition variables. Each technique has its own advantages and disadvantages, and the choice of technique depends on the specific requirements of the system.
5. How does process synchronization impact the performance of a system?
Ans. Process synchronization can impact the performance of a system in several ways. While it ensures data integrity and prevents synchronization issues, it also introduces overhead due to the need for coordination and mutual exclusion. Excessive synchronization can lead to decreased concurrency and increased waiting time for processes, affecting the overall system performance. Therefore, it is essential to strike a balance between ensuring synchronization and maintaining system efficiency.
10 videos|99 docs|33 tests
Download as PDF
Explore Courses for Computer Science Engineering (CSE) exam

Top Courses for Computer Science Engineering (CSE)

Signup for Free!
Signup to see your scores go up within 7 days! Learn & Practice with 1000+ FREE Notes, Videos & Tests.
10M+ students study on EduRev
Related Searches

pdf

,

Free

,

Important questions

,

Exam

,

Sample Paper

,

video lectures

,

mock tests for examination

,

Semester Notes

,

Process Synchronization & Critical Section | Operating System - Computer Science Engineering (CSE)

,

ppt

,

Extra Questions

,

Process Synchronization & Critical Section | Operating System - Computer Science Engineering (CSE)

,

MCQs

,

practice quizzes

,

study material

,

shortcuts and tricks

,

Summary

,

Objective type Questions

,

Previous Year Questions with Solutions

,

past year papers

,

Viva Questions

,

Process Synchronization & Critical Section | Operating System - Computer Science Engineering (CSE)

;