1 / 104

DEADLOCKS

DEADLOCKS. Introduction. In a computer system, we have a finite number of resources to be distributed among a number of competing processes. System resources are classified into: Physical Resources Logical Resources. Introduction continue….

ignatius
Download Presentation

DEADLOCKS

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. DEADLOCKS

  2. Introduction • In a computer system, we have a finite number of resources to be distributed among a number of competing processes. • System resources are classified into: • Physical Resources • Logical Resources

  3. Introduction continue… • In a computer system, we have a finite number of resources to be distributed among a number of competing processes. • System resources are classified into: • Physical Resources • Logical Resources • Printers • Tape drivers • Memory space • CPU cycles

  4. Introduction continue… • In a computer system, we have a finite number of resources to be distributed among a number of competing processes. • System resources are classified into: • Physical Resources • Logical Resources • Files • Semaphores

  5. Introduction continue… A process must request a resource before using it and release the resource after using it. The number of resources requested can not exceed the total number of resources available in the system.

  6. Introduction continue… • In a normal operation, a process may utilize a resource in the following sequence: • Request the resource • Use the resource • Release the resource

  7. Introduction continue… • In a normal operation, a process may utilize a resource in the following sequence: • Request • Use • Release If the request can not be immediately granted, then the requesting process must wait until it can get the resource.

  8. Introduction continue… • In a normal operation, a process may utilize a resource in the following sequence: • Request • Use • Release The requesting process can operate on the resource.

  9. Introduction continue… • In a normal operation, a process may utilize a resource in the following sequence: • Request • Use • Release The process releases the resource after using it.

  10. Introduction continue… The OS is responsible for making sure that the requesting process has been allocated the resource. Request and release of resources can be accomplished through the wait and signal operations on semaphores. A system table records whether each resource is free or allocated, and if allocated, to which process. If a process requests a resource that is currently allocated to another process, it can be added to a queue of processes waiting for this resource.

  11. Deadlock Situation In a multi-programming environment, several processes may compete for a fixed number of resources. A process requests resources and if the resources are not available at that time, it enters a wait state. Waiting processes may never again change state, because the resources they have requested are held by other waiting processes. This situation is called deadlock.

  12. Deadlock Situation P 1 Printer P 2 Scanner

  13. Deadlock Situation Consider a system with one printer and one scanner. Process P1 request the printer and process P2 requests the scanner. Both requests are granted. Now P1 requests the scanner (without giving up the printer) and P2 requests the printer (without giving up the scanner). Neither request can be granted so both processes enter a deadlock situation.

  14. Deadlock Situation P 1 Printer P 2 Scanner

  15. Deadlock - Definition A deadlock is a situation where a group of processes is permanently blocked as a result of each process having acquired a set of resources needed for its completion and having to wait for release of the remaining resources held by others thus making it impossible for any of the deadlocked processes to proceed. Deadlocks can occur in concurrent environments as a result of the uncontrolled granting of the system resources to the requesting processes.

  16. Deadlock - Definition A set of process is in a deadlock state if each process in the set is waiting for an event that can be caused by only another process in the set. Each member of the set of deadlock processes is waiting for a resource that can be released only by a deadlock process.

  17. Deadlock Characterization • Necessary Conditions • A deadlock situation can arise if the following four conditions hold simultaneously in a system. • Mutual Exclusion • Hold and Wait • No Preemption • Circular Wait

  18. Deadlock Characterization • Necessary Conditions Continue… • Mutual Exclusion • At least one resource must be held in a non-sharable mode; that is, only one process at a time can use the resource. If another process requests that resource, the requesting process must be delayed until the resource has been released.

  19. Deadlock Characterization • Necessary Conditions Continue… • Hold and Wait • A process must be holding at least one resource and waiting to acquire additional resources that are currently held by other processes.

  20. Deadlock Characterization • Necessary Conditions Continue… • No Preemption • Resources already allocated to a process cannot be preempted; that is, a resource can be released only voluntarily by the process holding it, after process has completed its task.

  21. Deadlock Characterization • Necessary Conditions Continue… • Circular Wait • A set {P0, P1, …, Pn} of waiting processes must exist such that P0 is waiting for a resource that is held by P1, P1 is waiting for a resource that is held by P2, …, Pn-1 is waiting for a resource that is held by Pn, and Pn is waiting for a resource that is held by P0. • The processes in the system form a circular list or chain where each process in the list is waiting for a resource held by the next process in the list.

  22. Deadlock Situation P 1 P 2 P 1 i i R1 R2 P 2 i i R1 R2 Holding a resource Requesting a resource Deadlock situation Graphic representation of Resource Allocation

  23. Resource-Allocation Graph Resource-allocation graph is used to described the deadlock. This graph consists of a set of vertices V and a set of edges E. The set vertices V is partitioned into two different types of nodes P = {P1, P2, …, Pn}, the set consisting of all active processes in the system, and R = {R1, R2, …, Rm}, the set consisting of all resource types in the system.

  24. Resource-Allocation Graph continue… A directed edge from resource type Rj to process Pi is denoted by RjgPi ; it signifies that an instance of resource type Rj has been allocated to process Pi . A directed edge PigRj is called a request edge and a directed edge RjgPi is called an assignment edge.

  25. Resource-Allocation Graph continue… Process node is represented by circles. Resource node is represented by rectangles. For each instances of a resource type, there is a dot in the resource node rectangle. P 1 R1 i i R2

  26. Resource-Allocation Graph continue… A request edge points to only the square , where as an assignment edge must also designate one of the dots in the square. i i R1 R3 P 1 P 2 P 3 i i i i i R2 R4

  27. Resource-Allocation Graph continue… When process Pi requests an instance of resource type Rj, a request edge is inserted in the resource allocation graph. i i R1 R3 P 1 P 2 P 3 i i i i i R2 R4

  28. Resource-Allocation Graph continue… When this requests can be fulfilled the request edge is instantaneously transformed to an assignment edge. i i R1 R3 P 1 P 2 P 3 i i i i i R2 R4

  29. Resource-Allocation Graph continue… When the process no longer needs access to the resource it releases the resource, and as a result the assignment edge is deleted. i i R1 R3 P 1 P 2 P 3 i i i i i R2 R4

  30. Resource-Allocation Graph continue… The resource-allocation graph depicts the following: i i R1 R3 P 1 P 2 P 3 • The sets P, R, and E • P = {P1, P2, …, Pn} • R = {R1, R2, …, Rm} • E = {P1gR1, P2gR3, R1gP2, R2gP2, R2gP1, R3gP3} i i i i i R2 R4

  31. Resource-Allocation Graph continue… The resource-allocation graph depicts the following: i i R1 R3 P 1 P 2 P 3 • Resource instances • One instance of resource type R1 • Two instances of resource type R2 • One instance of resource type R3 • Three instances of resource type R4 i i i i i R2 R4

  32. Resource-Allocation Graph continue… The resource-allocation graph depicts the following: Process states i i R1 R3 Process P1 is holding an instance of resource type R2 , and is waiting for an instance of resource type R1 . P 1 P 2 P 3 i i i i i R2 R4

  33. Resource-Allocation Graph continue… The resource-allocation graph depicts the following: Process states i i R1 R3 Process P1 is holding an instance of resource type R2, and is waiting for an instance of resource type R1. Process P2 is holding an instance of resource types R1 and R2, and is waiting for an instance of resource type R3 . P 1 P 2 P 3 i i i i i R2 R4

  34. Resource-Allocation Graph continue… The resource-allocation graph depicts the following: Process states i i R1 R3 Process P1 is holding an instance of resource type R2, and is waiting for an instance of resource type R1. Process P2 is holding an instance of resource types R1 and R2, and is waiting for an instance of resource type R3 . P 1 P 2 P 3 Process P3 is holding an instance of resource type R3 . i i i i i R2 R4

  35. Resource-Allocation Graph continue… Tips to check deadlock: i i R1 R3 If no cycle exists in the resource allocation graph, there is no deadlock. P 1 P 2 P 3 i i i i i R2 R4

  36. Resource-Allocation Graph continue… Tips to check deadlock: i i R1 R3 If there is a cycle in the graph and each resource has only one instance, then there is a deadlock. Here a cycle is a necessary and sufficient condition for deadlock. P 1 P 2 P 3 i i i i R2 R4

  37. Resource-Allocation Graph continue… Tips to check deadlock: If there is a cycle in the graph and each resource has more than one instance, there may or may not be a deadlock. A cycle may be broken if some process outside the cycle has a resource instance that can break the cycle. Therefore, a cycle in the resource allocation graph is a necessary but not sufficient condition for deadlock, when multiple resource instances are considered.

  38. Resource-Allocation Graph continue… Tips to check deadlock: P 2 i i R1 If there is a cycle in the graph and each resource has more than one instance, there may or may not be a deadlock. A cycle may be broken if some process outside the cycle has a resource instance that can break the cycle. Therefore, a cycle in the resource allocation graph is a necessary but not sufficient condition for deadlock, when multiple resource instances are considered. P 1 P 3 i i P 4 R2

  39. Handling Deadlocks Possible strategies to deal with deadlocks: • Deadlock Prevention • Deadlock Avoidance • Deadlock Detection and Recovery

  40. Handling Deadlocks continue… Possible strategies to deal with deadlocks: • Deadlock Prevention • Deadlock Avoidance • Deadlock Detection and Recovery Is a set methods for ensuring that at least one of the necessary conditions cannot hold. These methods prevent deadlocks by constraining how requests for resources can be made.

  41. Handling Deadlocks continue… Possible strategies to deal with deadlocks: • Deadlock Prevention • Deadlock Avoidance • Deadlock Detection and Recovery DA requires that the operating system be given in advance additional information concerning which resources a process will request and use during its lifetime. With this knowledge, we can decide for each request whether or not the process should wait.

  42. Handling Deadlocks continue… Possible strategies to deal with deadlocks: • Deadlock Prevention • Deadlock Avoidance • Deadlock Detection and Recovery Here the system can provide an algorithm that examines the state of the system to determine whether a deadlock has occurred and an algorithm to recover from the deadlock.

  43. Deadlock Prevention We can prevent the occurrence of a deadlock by ensuring that at least one of the four necessary conditions can not hold. • Mutual Exclusion • Hold and Wait • No Preemption • Circular Wait

  44. Deadlock Prevention continue… Mutual Exclusion: Shareable resources do not require mutually exclusive access, and thus cannot be involved in a deadlock.

  45. Deadlock Prevention continue… Hold and Wait: When a process requests a resource, it does not hold any other resources. Two protocols: • Requires each process to request and be allocated all its resources before it begins execution. • Allows a process to request resources only when the process has none.

  46. Deadlock Prevention continue… Hold and Wait: When a process requests a resource, it does not hold any other resources. Two protocols: • Requires each process to request and be allocated all its resources before it begins execution. • Allows a process to request resources only when the process has none. A process may request some resources and use them. However it must release all the resources that is currently allocated before it can request any additional resources.

  47. Deadlock Prevention continue… No Preemption: If a process is holding some resources and requests another resource that cannot be immediately allocated to it, then all resources currently being held are preempted. The process will be restarted only when it can regain its old resources, as well as the new ones that is requesting.

  48. Deadlock Prevention continue… No Preemption: If a process requests some resources, we first check whether they are available. If they are, we allocate them. If they are not available, we check whether they are allocated to some other process that is waiting for additional resources. If so, we preempt the desired resources from the waiting process and allocate them to the requesting process. If the resources are not either available or held by a waiting process, the requesting process must wait. While it is waiting, some of its resources may be preempted, but only if another process request them. A process can be restarted only when it is allocated the new resources it is requesting and recovers any resources that were preempted while it was waiting.

  49. Deadlock Prevention continue… Circular Wait: One way to ensure that circular wait never holds is to impose a total ordering of all resource types, and to require that each process requests resources in an increasing order of enumeration.

  50. Deadlock Prevention continue… Circular Wait: Each process can request resources only in an increasing order of enumeration. That is, a process can initially request any number of instances of a resource type, say Ri. After that, the process can request instances of resource type Rj if and onlyif F(Rj) > F(Ri).

More Related