Lecture Operating system principles - Chapter 6: Concurrency: Deadlock and starvation

54 67 0
Lecture Operating system principles - Chapter 6: Concurrency: Deadlock and starvation

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

Thông tin tài liệu

This chapter examines two problems that plague all efforts to support concurrent processing: deadlock and starvation. We begin with a discussion of the underlying principles of deadlock and the related problem of starvation. Then we examine the three common approaches to dealing with deadlock: prevention, detection, and avoidance.

Chapter Concurrency: Deadlock and Starvation • Principals of Deadlock • Deadlock Prevention • Deadlock Avoidance • Deadlock Detection • Dining Philosophers Problem Deadlock • A set of processes is deadlocked when each process in the set is blocked awaiting an event that can only be triggered by another blocked process in the set – Typically involves processes competing for the same set of resources – The event is typically the freeing up of some requested resources • No efficient solution Potential Deadlock I need quad C and D I need quad D and A The necessary resources are available for any of the cars to proceed I need quad B and C I need quad A and B Actual Deadlock HALT until D is free HALT until A is free HALT until C is free HALT until B is free Two Processes P and Q • Consider two processes P and Q in a uniprocessor system • Each needs exclusive access to a resource A and B for a period of time Joint Progress Diagram of Deadlock Deadlock is only inevitable if the joint progress of the two processes creates a path that enters the fatal region Alternative logic • Whether or not deadlock occurs depends on both the dynamics of the execution and on the details of the application • Suppose that P does not need both resources at the same time Diagram of alternative logic Deadlock cannot occur Resource Categories Two general categories of resources: • Reusable – can be safely used by only one process at a time and is not depleted by that use – examples: processors, main and secondary memory, devices, and data structures such as files, databases, and semaphores • Consumable – can be created (produced) and destroyed (consumed) – examples: interrupts, signals, messages, and information in I/O buffers Reusable Resources Example • Consider two processes that compete for exclusive access to a disk file D and a tape drive T 10 Deadlock Avoidance Restrictions • Maximum resource requirement must be stated in advance • Processes under consideration must be independent and with no synchronization requirements • There must be a fixed number of resources to allocate • No process may exit while holding resources 40 Roadmap • Principals of Deadlock • Deadlock Prevention • Deadlock Avoidance • Deadlock Detection • Dining Philosophers Problem 41 Deadlock Detection • Deadlock prevention strategies are very conservative – Limit access to resources and impose restrictions on processes • Deadlock detection strategies the opposite – Resource requests are granted whenever possible – Regularly check for deadlock (circular wait) 42 A Common Detection Algorithm • Idea: – Find and mark a process whose resource requests can be satisfied with the available resources – Assume that those resources are granted and that the process runs to completion and releases all its resources – Look for another process to satisfy – A deadlock exists if and only if there are unmarked processes at the end 43 A Common Detection Algorithm • Use a Allocation matrix and Available vector as in the Banker’s algorithm • Also use a request matrix Q – where Qij indicates that an amount of resource j is requested by process i • Initially, ‘un-mark’ all processes 44 Detection Algorithm Mark each process that has a row in the Allocation matrix of all zeros Initialize a temporary vector W to equal the Available vector Find an index i such that process i is currently unmarked and the ith row of Q is less than or equal to W – i.e Qik ≤ Wk for ≤ k ≤ m – If no such row is found, terminate 45 Detection Algorithm cont If such a row is found, – mark process i and add the corresponding row of the allocation matrix to W – i.e set Wk = Wk + Aik, for ≤ k ≤ m Return to step • A deadlock exists if and only if there are unmarked processes at the end • Each unmarked process is deadlocked 46 Deadlock Detection   W = (0 0 1) W = W + (0 0 0) = (0 0 1) P1 and P2 are deadlocked 47 Recovery Strategies Once Deadlock Detected • Abort all deadlocked processes • Back up each deadlocked process to some previously defined checkpoint, and restart all processes – Risk of deadlock recurring • Successively abort deadlocked processes until deadlock no longer exists • Successively preempt resources until deadlock no longer exists 48 Advantages and Disadvantages 49 Roadmap • Principals of Deadlock • Deadlock Prevention • Deadlock Avoidance • Deadlock Detection • Dining Philosophers Problem 50 Dining Philosophers Problem: Scenario • The life of a philosopher consists of thinking and eating spaghetti • A philosopher requires two forks to eat spaghetti • A philosopher wishing to eat goes to his assigned place at the table and, using the two forks on either side of the plate, takes and eats some spaghetti 51 The Problem • Devise a ritual (algorithm) that will allow the philosophers to eat – No two philosophers can use the same fork at the same time (mutual exclusion) – No philosopher must starve to death (avoid deadlock and starvation … literally!) This is a representative problem to illustrate basic problems in deadlock and starvation 52 A first solution using semaphores Each philosopher picks up first the fork on the left and then the fork on the right What will happen if all of the philosophers are hungry at the same time? After eating, the two forks are replaced on the table 53 Avoiding deadlock An attendant only allows four philosophers at a time into the dining room This solution is free of deadlock and starvation 54 ... solution Potential Deadlock I need quad C and D I need quad D and A The necessary resources are available for any of the cars to proceed I need quad B and C I need quad A and B Actual Deadlock HALT... Processes P and Q • Consider two processes P and Q in a uniprocessor system • Each needs exclusive access to a resource A and B for a period of time Joint Progress Diagram of Deadlock Deadlock is... state of the system of resources and processes an instance of a resource 14 Conditions for possible Deadlock • Mutual exclusion – Only one process may use a resource at a time • Hold -and- wait – A

Ngày đăng: 30/01/2020, 01:28

Từ khóa liên quan

Mục lục

  • Chapter 6 Concurrency: Deadlock and Starvation

  • Deadlock

  • Potential Deadlock

  • Actual Deadlock

  • Two Processes P and Q

  • Joint Progress Diagram of Deadlock

  • Alternative logic

  • Diagram of alternative logic

  • Resource Categories

  • Reusable Resources Example

  • Slide 11

  • Reusable Resources Example 2: Memory Request

  • Consumable Resources Example

  • Resource Allocation Graphs

  • Conditions for possible Deadlock

  • Actual Deadlock Requires …

  • Resource Allocation Graphs of deadlock

  • Slide 18

  • Dealing with Deadlock

  • Roadmap

Tài liệu cùng người dùng

  • Đang cập nhật ...

Tài liệu liên quan