Deadlock Prevention
A common way to prevent deadlock is to destroy one or more of the four necessary conditions for deadlock. The four conditions for deadlock are: mutual exclusion, request and hold, non-preemptive, and circular wait. Since mutual exclusion is inevitable (because at least one resource is exclusive), it is usually not considered to be destroyed. Different strategies can be used to avoid deadlock for the other three conditions:
Destroy the "Request and Hold" condition
-
Method: Pre-allocate resources to prevent the process from continuing to request resources during operation. All resources are allocated at once when the process starts, and the process cannot request new resources during operation.
-
Advantages:
- Simple and easy to implement.
- Relatively intuitive in system design.
- Disadvantages:
- Low resource utilization: Due to pre-allocation, some resources may be idle and cannot be used by other processes.
- Starvation phenomenon: If a process does not obtain all resources in time, it may wait for a long time, resulting in starvation.
This method is suitable for systems with relatively accurate predictions of resource requirements, but it is not always effective in multi-tasking, large-scale complex systems.
Destroy the "non-preemptible" condition
- Method: Adopt a preemptible resource allocation method, that is, allow the process to release the resources it has held when resources are insufficient. If the process cannot obtain the required resources, it will release the occupied resources and reapply for them later.
- Advantages:
- It can prevent deadlock from occurring, because the process can readjust the system state by releasing the occupied resources.
- Disadvantages:
- Complex implementation: It is necessary to implement a mechanism for resource preemption, saving and restoring the state in the operating system.
- High cost: In some resources (such as memory, files), saving and restoring the state may involve a large overhead.
- Scope of application:
- It is more applicable to resources (such as CPU registers, memory) that can easily save and restore the state.
This method is suitable for environments where the resource state can be efficiently saved and restored, but it may be very complicated to implement in some hardware or software environments.
Destroy the "circular wait" condition
- Method: By linearly sorting all resources in the system, ensure that resource requests follow a certain order, thereby avoiding circular waiting. It can be achieved in two ways:
- Sequential allocation: All processes are required to apply for resources in the order of resource numbers.
- Discard the larger one first, then take the smaller one: When a process applies for resources, if the number of the existing resource is greater than the number of the resource being applied for, the occupied resource must be released.
- Advantages:
- Through reasonable resource sorting, the risk of deadlock is reduced, and the system throughput and resource utilization are improved.
- Disadvantages:
- Numbering order cannot meet all requirements: For some complex resource dependencies, it may be difficult to find a resource numbering order that all processes are satisfied with.
- Resource waste: Even if some resources may not be used in a certain period of time, they are still subject to sorting restrictions.
- User programming restrictions: Requires that processes must apply for resources strictly in the specified order, which may limit the flexibility of user programs.
This method is suitable for scenarios where resource requests are relatively predictable and fixed, but in dynamically changing systems, it may cause unnecessary resource waste and inconvenience.