13 Dec 2019

  • December 13, 2019
  • Amitraj
Introduction of Deadlock in Operating System

-> A process in operating systems uses different resources and uses resources in following way.

1) Requests a resource
2) Use the resource
2) Releases the resource



-> Deadlock is a situation where a set of processes are blocked because each process is holding a resource and waiting for another resource acquired by some other process.

-> Consider an example, when two trains are coming toward each other on same track and there is only one track, none of the trains can move once they are in front of each other. Similar situation occurs in operating systems when there are two or more processes hold some resources and wait for resources held by others. 

For example, in the below diagram, Process 1 is holding Resource 1 and waiting for resource 2 which is acquired by process 2, and process 2 is waiting for resource 1.






Necessary conditions for Deadlocks

 1. Mutual Exclusion

A resource can only be shared in mutually exclusive manner. It implies, if two process cannot use the same resource at the same time.


2. Hold and Wait

A process waits for some resources while holding another resource at the same time.


3. No Preemption 

A resource cannot be taken from a process unless the process releases the resource.


4. Circular Wait 

A set of processes are waiting for each other in circular form.

Related Posts:

  • Scheduling Algorithms in OS Scheduling Algorithms There are various algorithms which are used by the Operating System to schedule the processes on the processor in an efficient way. The Purpose of a Scheduling algorithm 1. Maximum CPU utilization 2. … Read More
  • Interprocess communication (IPC) in OS Interprocess communication (IPC) -> Interprocess communication (IPC) is a set of programming interfaces that allow a programmer to coordinate activities among different program processes that can run concurrently in an o… Read More
  • CPU Scheduling in Operating System CPU Scheduling  -> In Multiprogramming systems, the Operating system schedules the processes on the CPU to have the maximum utilization of it and this procedure is called CPU scheduling. The Operating System us… Read More
  • Types of Processes in OS [Independent & Co-operating Process] There are two types of processes:- 1. Independent process-  These processes work independentaly of them-selves. They do not affect and can not be affected by other processes that are running with in the operating s… Read More
  • Types of CPU Scheduling in OS CPU scheduling decisions may take place under the following four circumstances: 1.When a process switches from the running state to the waiting state(for I/O request or invocation of wait for the termination of one of the c… Read More

Translate

Popular Posts