No Pre-Emption
Duration: 3 min
This video lesson is available to enrolled students.
AI Summary
An AI-generated summary of this video lecture.
The video lecture focuses on the 'No pre-emption' condition in deadlock handling strategies within operating systems. The instructor, Sanchit Jain Sir, breaks down the specific rules governing resource allocation when pre-emption is not strictly forbidden but managed under certain conditions. He explains the step-by-step logic a system follows when a process requests resources: checking availability, checking if another waiting process holds them, and handling the waiting state. The lecture includes visual aids on the slide and hand-drawn diagrams to clarify the flow of resource pre-emption between processes.
Chapters
0:00 – 2:00 00:00-02:00
The instructor begins by analyzing the slide titled 'No pre-emption'. He reads the first bullet point: 'if a process requests some resources, we first check whether they are available. If they are, we allocate them.' He then moves to the second point, explaining that if resources are not available, the system checks if they are allocated to another process waiting for additional resources. If this condition is met, the system pre-empts the resources from the waiting process and allocates them to the requesting process. To illustrate this, he draws a diagram on the screen with 'R' representing a resource and 'P' representing a process, showing an arrow indicating the transfer of resources from one to the other.
2:00 – 3:18 02:00-03:18
The lecture proceeds to the third bullet point: 'If the resources are neither available nor held by a waiting process, the requesting process must wait.' The instructor emphasizes that while waiting, the process's own resources may be pre-empted if another process requests them. He then explains the final condition: a process can only be restarted when it is allocated the new resources it requested and recovers any resources that were pre-empted while it was waiting. He gestures to emphasize the recovery aspect of the process restart, ensuring the student understands that the process must regain its lost resources before continuing execution.
The video provides a detailed walkthrough of the 'No pre-emption' condition in deadlock handling. It clarifies that pre-emption is conditional. The system first checks availability. If unavailable, it looks for a waiting process holding the resource to pre-empt from. If no such process exists, the requester waits. During this wait, the requester is vulnerable to having its own resources taken by others. The process only resumes execution once it secures the requested resources and regains any previously held resources that were taken away. This structured approach ensures that resources are managed efficiently without causing indefinite blocking, balancing the needs of multiple processes in the system effectively.