1 / 9

Operating Systems

Operating Systems. Abhishek Reddy Pam 11CS30002 Date:20-3-14. Recap. In last class we have seen safety algorithm :. Banker’s Algorithm: Resource Request. Request i – request vector , number of additional instances for each resource type process i requests at this time.

cooper
Download Presentation

Operating Systems

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. Operating Systems Abhishek Reddy Pam 11CS30002 Date:20-3-14

  2. Recap • In last class we have seen safety algorithm :

  3. Banker’s Algorithm:Resource Request • Requesti – request vector , number of additional instances for each resource type process i requests at this time. • 1. If not(Requesti Needi) raise an error – process i tries to get more resources than what it declared • 2. If not(Requesti  Availablei) process imust wait – no sufficient resources at this time. • 3. Tentatively allocate the requested resources to process i : Availablei= Availablei– Requesti Allocationi= Allocationi+ Requesti Needi= Needi- Requesti 4. Check safety of state. If safe , the resources are allocated. If not safe then cancel the tentative allocation and process i must wait.

  4. Deadlock Avoidance : Flow chart for Pi Pi requests resources Take decision (safety algorithm) yes Requesti[] Permanent allocation of resource Provisionally allocate resources State Safe state? New state No Temporary state (Request algorithm) Restore the old state

  5. Example: 5 processes P0 through P4 and 3 resource type A, B, C • Intially at time T0 The system is in a safe state since the sequence < P1, P3, P4, P2, P0> satisfies safety criteria. Safe sequence is not unique.

  6. Deadlock Prevention • Deadlock may be prevented by any one of the following conditions : • Elimination of “Mutual Exclusion” : The mutual exclusion condition must hold for non-sharable resources. This condition is difficult to eliminate because some resources, such as the tap drive and printer, are inherently non-shareable. Removing mutual exclusion is not always an option. • Elimination of “Hold and Wait” : There are two possibilities for elimination of the second condition. The first alternative is that a process request be granted all of the resources it needs at once, prior to execution. The second alternative is to disallow a process from requesting resources whenever it has previously allocated resources. This strategy requires that all of the resources a process will need must be requested at once. The system must grant resources on “all or none” basis. Reasonable systems can be programmed this way, but in practice it's almost never done. Starvation is a real possibility, and its probability increases with the number of resources concurrently acquired.

  7. Elimination of “No-preemption” : The nonpreemption condition can be alleviated by forcing a process waiting for a resource that cannot immediately be allocated to relinquish all of its currently held resources, so that other processes may use them to finish. Process will be restarted only when it can regain its old resources, as well as the new ones that it is requesting. Implementation of this strategy denies the “no-preemptive” condition effectively. Can cause Indefinite postponement (starvation)and also High Cost . • Elimination of “Circular wait” : This can be done by imposing a total ordering on all of the resource types and than forcing, all processes to request the resources in order (increasing or decreasing). With this rule, the resource allocation graph can never have a cycle. In order to request resource Rj , a process must first release all Risuch that i >= j.

  8. Let R={R1, R2,……,Rm} set of resource type We assign unique integer with each type One to one function F:RN Protocol: Each process can request resource only in an increasing order. Initially request Ri, after that, it can request Rj-> If and only if F(Rj)>F(Ri) Currently holding Rj; Want to request Ri ->Must have released Rj -> In this way circular wait is not possible

  9. Deadlock Handling • 1. Detection and recovery -> overhead • 2. Dynamic avoidance -> overhead and poor resource utilization • 3. Prevention • 4. Just ignore the problem

More Related