Top Banner
Deadlocks Amir H. Payberah [email protected] Amirkabir University of Technology (Tehran Polytechnic) Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 1/1
128
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Deadlocks

Deadlocks

Amir H. [email protected]

Amirkabir University of Technology(Tehran Polytechnic)

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 1 / 1

Page 2: Deadlocks

Motivation

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 2 / 1

Page 3: Deadlocks

Motivation

I Multiprogramming environment: several processes compete for afinite number of resources.

I A process requests resources: if the resources are not available atthat time, the process enters a waiting state.

I What if the requests resources are held by other waiting processes?

I This situation is called a deadlock.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 3 / 1

Page 4: Deadlocks

Motivation

I Multiprogramming environment: several processes compete for afinite number of resources.

I A process requests resources: if the resources are not available atthat time, the process enters a waiting state.

I What if the requests resources are held by other waiting processes?

I This situation is called a deadlock.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 3 / 1

Page 5: Deadlocks

Motivation

I Multiprogramming environment: several processes compete for afinite number of resources.

I A process requests resources: if the resources are not available atthat time, the process enters a waiting state.

I What if the requests resources are held by other waiting processes?

I This situation is called a deadlock.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 3 / 1

Page 6: Deadlocks

Motivation

I Multiprogramming environment: several processes compete for afinite number of resources.

I A process requests resources: if the resources are not available atthat time, the process enters a waiting state.

I What if the requests resources are held by other waiting processes?

I This situation is called a deadlock.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 3 / 1

Page 7: Deadlocks

Deadlocks

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 4 / 1

Page 8: Deadlocks

System Model

I System consists of resources: R1,R2, · · · ,Rm

I Resource types: CPU cycles, memory space, I/O devices

I Each resource type Ri has Wi instances.

I Each process utilizes a resource as follows:• Request• Use• Release

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 5 / 1

Page 9: Deadlocks

System Model

I System consists of resources: R1,R2, · · · ,Rm

I Resource types: CPU cycles, memory space, I/O devices

I Each resource type Ri has Wi instances.

I Each process utilizes a resource as follows:• Request• Use• Release

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 5 / 1

Page 10: Deadlocks

System Model

I System consists of resources: R1,R2, · · · ,Rm

I Resource types: CPU cycles, memory space, I/O devices

I Each resource type Ri has Wi instances.

I Each process utilizes a resource as follows:• Request• Use• Release

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 5 / 1

Page 11: Deadlocks

System Model

I System consists of resources: R1,R2, · · · ,Rm

I Resource types: CPU cycles, memory space, I/O devices

I Each resource type Ri has Wi instances.

I Each process utilizes a resource as follows:• Request• Use• Release

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 5 / 1

Page 12: Deadlocks

Deadlock Characterization (1/3)

I Deadlock can arise if four conditions hold simultaneously:• Mutual exclusion• Hold and wait• No preemption• Circular wait

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 6 / 1

Page 13: Deadlocks

Deadlock Characterization (2/3)

I Mutual exclusion• Only one process at a time can use a resource.

I Hold and wait• A process holding at least one resource is waiting to acquire

additional resources held by other processes.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 7 / 1

Page 14: Deadlocks

Deadlock Characterization (2/3)

I Mutual exclusion• Only one process at a time can use a resource.

I Hold and wait• A process holding at least one resource is waiting to acquire

additional resources held by other processes.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 7 / 1

Page 15: Deadlocks

Deadlock Characterization (3/3)

I No preemption• A resource can be released only voluntarily by the process holding

it, after that process has completed its task.

I Circular wait• A set processes: {P0,P1, · · · ,Pn}• P0 is waiting for a resource that is held by P1

• P1 is waiting for a resource that is held by P2

• ...• Pn is waiting for a resource that is held by P0

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 8 / 1

Page 16: Deadlocks

Deadlock Characterization (3/3)

I No preemption• A resource can be released only voluntarily by the process holding

it, after that process has completed its task.

I Circular wait• A set processes: {P0,P1, · · · ,Pn}• P0 is waiting for a resource that is held by P1

• P1 is waiting for a resource that is held by P2

• ...• Pn is waiting for a resource that is held by P0

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 8 / 1

Page 17: Deadlocks

Deadlock Example (1/2)

/* Create and initialize the mutex locks */

pthread_mutex_t first_mutex;

pthread_mutex_t second_mutex;

pthread_mutex_init(&first_mutex, NULL);

pthread_mutex_init(&second_mutex, NULL);

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 9 / 1

Page 18: Deadlocks

Deadlock Example (2/2)

/* thread one runs in this function */

void *do_work_one(void *param) {

pthread_mutex_lock(&first mutex);

pthread_mutex_lock(&second mutex);

// do some work

pthread_mutex_unlock(&second mutex);

pthread_mutex_unlock(&first mutex);

pthread_exit(0);

}

/* thread two runs in this function */

void *do_work_two(void *param) {

pthread_mutex_lock(&second mutex);

pthread_mutex_lock(&first mutex);

// do some work

pthread_mutex_unlock(&first mutex);

pthread_mutex_unlock(&second mutex);

pthread_exit(0);

}

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 10 / 1

Page 19: Deadlocks

Resource-Allocation Graph

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 11 / 1

Page 20: Deadlocks

Resource-Allocation Graph (1/2)

I A set of vertices V and a set of edges E .

I Vertices• All the processes in the system: P = P1,P2, · · · ,Pn

• All resource types in the system: R = R1,R2, · · · ,Rm

I Edges• Request edge: directed edge Pi → Rj

• Assignment edge: directed edge Rj → Pi

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 12 / 1

Page 21: Deadlocks

Resource-Allocation Graph (1/2)

I A set of vertices V and a set of edges E .

I Vertices• All the processes in the system: P = P1,P2, · · · ,Pn

• All resource types in the system: R = R1,R2, · · · ,Rm

I Edges• Request edge: directed edge Pi → Rj

• Assignment edge: directed edge Rj → Pi

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 12 / 1

Page 22: Deadlocks

Resource-Allocation Graph (1/2)

I A set of vertices V and a set of edges E .

I Vertices• All the processes in the system: P = P1,P2, · · · ,Pn

• All resource types in the system: R = R1,R2, · · · ,Rm

I Edges• Request edge: directed edge Pi → Rj

• Assignment edge: directed edge Rj → Pi

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 12 / 1

Page 23: Deadlocks

Resource-Allocation Graph (2/2)

I Process (vertices)

I Resource type with 4 instances (vertices)

I Pi requests instance of Rj (edge)

I Pi is holding an instance of Rj (edge)

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 13 / 1

Page 24: Deadlocks

Resource-Allocation Graph (2/2)

I Process (vertices)

I Resource type with 4 instances (vertices)

I Pi requests instance of Rj (edge)

I Pi is holding an instance of Rj (edge)

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 13 / 1

Page 25: Deadlocks

Resource-Allocation Graph (2/2)

I Process (vertices)

I Resource type with 4 instances (vertices)

I Pi requests instance of Rj (edge)

I Pi is holding an instance of Rj (edge)

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 13 / 1

Page 26: Deadlocks

Resource-Allocation Graph (2/2)

I Process (vertices)

I Resource type with 4 instances (vertices)

I Pi requests instance of Rj (edge)

I Pi is holding an instance of Rj (edge)

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 13 / 1

Page 27: Deadlocks

Resource-Allocation Graph Example (1/3)

I Example of a resource allocation graph.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 14 / 1

Page 28: Deadlocks

Resource-Allocation Graph Example (2/3)

I Resource allocation graph with a deadlock.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 15 / 1

Page 29: Deadlocks

Resource-Allocation Graph Example (3/3)

I Resource allocation graph with a cycle but no deadlock.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 16 / 1

Page 30: Deadlocks

Basic Facts

I If graph contains no cycles• No deadlock

I If graph contains a cycle• If only one instance per resource type, then deadlock.• If several instances per resource type, possibility of deadlock.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 17 / 1

Page 31: Deadlocks

Basic Facts

I If graph contains no cycles• No deadlock

I If graph contains a cycle• If only one instance per resource type, then deadlock.• If several instances per resource type, possibility of deadlock.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 17 / 1

Page 32: Deadlocks

Methods for Handling Deadlocks

I Ensure that the system will never enter a deadlock state:• Deadlock prevention• Deadlock avoidance

I Allow the system to enter a deadlock state and then recover.

I Ignore the problem and pretend that deadlocks never occur in thesystem; used by most operating systems.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 18 / 1

Page 33: Deadlocks

Methods for Handling Deadlocks

I Ensure that the system will never enter a deadlock state:• Deadlock prevention• Deadlock avoidance

I Allow the system to enter a deadlock state and then recover.

I Ignore the problem and pretend that deadlocks never occur in thesystem; used by most operating systems.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 18 / 1

Page 34: Deadlocks

Methods for Handling Deadlocks

I Ensure that the system will never enter a deadlock state:• Deadlock prevention• Deadlock avoidance

I Allow the system to enter a deadlock state and then recover.

I Ignore the problem and pretend that deadlocks never occur in thesystem; used by most operating systems.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 18 / 1

Page 35: Deadlocks

Deadlock Prevention

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 19 / 1

Page 36: Deadlocks

Deadlock Prevention (1/3)

I Deadlock can arise if four conditions hold simultaneously:• Mutual exclusion• Hold and wait• No preemption• Circular wait

I Restrain the ways request can be made.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 20 / 1

Page 37: Deadlocks

Deadlock Prevention (1/3)

I Deadlock can arise if four conditions hold simultaneously:• Mutual exclusion• Hold and wait• No preemption• Circular wait

I Restrain the ways request can be made.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 20 / 1

Page 38: Deadlocks

Deadlock Prevention (2/3)

I Mutual exclusion• Not required for sharable resources, e.g., read-only files.• Must hold for non-sharable resources.

I Hold and wait• Must guarantee that whenever a process requests a resource, it does

not hold any other processes.

• Solution 1: require a process to request and be allocated all itsresources before it begins execution.

• Solution 2: allows a process to request resources only when it hasnone.

• Low resource utilization• Starvation possible

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 21 / 1

Page 39: Deadlocks

Deadlock Prevention (2/3)

I Mutual exclusion• Not required for sharable resources, e.g., read-only files.• Must hold for non-sharable resources.

I Hold and wait• Must guarantee that whenever a process requests a resource, it does

not hold any other processes.

• Solution 1: require a process to request and be allocated all itsresources before it begins execution.

• Solution 2: allows a process to request resources only when it hasnone.

• Low resource utilization• Starvation possible

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 21 / 1

Page 40: Deadlocks

Deadlock Prevention (2/3)

I Mutual exclusion• Not required for sharable resources, e.g., read-only files.• Must hold for non-sharable resources.

I Hold and wait• Must guarantee that whenever a process requests a resource, it does

not hold any other processes.• Solution 1: require a process to request and be allocated all its

resources before it begins execution.

• Solution 2: allows a process to request resources only when it hasnone.

• Low resource utilization• Starvation possible

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 21 / 1

Page 41: Deadlocks

Deadlock Prevention (2/3)

I Mutual exclusion• Not required for sharable resources, e.g., read-only files.• Must hold for non-sharable resources.

I Hold and wait• Must guarantee that whenever a process requests a resource, it does

not hold any other processes.• Solution 1: require a process to request and be allocated all its

resources before it begins execution.• Solution 2: allows a process to request resources only when it has

none.

• Low resource utilization• Starvation possible

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 21 / 1

Page 42: Deadlocks

Deadlock Prevention (2/3)

I Mutual exclusion• Not required for sharable resources, e.g., read-only files.• Must hold for non-sharable resources.

I Hold and wait• Must guarantee that whenever a process requests a resource, it does

not hold any other processes.• Solution 1: require a process to request and be allocated all its

resources before it begins execution.• Solution 2: allows a process to request resources only when it has

none.• Low resource utilization• Starvation possible

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 21 / 1

Page 43: Deadlocks

Deadlock Prevention (3/3)

I No preemption

• If a process that is holding some resources, requests anotherresource that cannot be immediately allocated to it, then allresources currently being held are released.

• Preempted resources are added to the list of resources for which theprocess is waiting.

• Process will be restarted only when it can regain its old resources,as well as the new ones that it is requesting.

I Circular wait• Impose a total ordering of all resource types, and require that each

process requests resources in an increasing order of enumeration.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 22 / 1

Page 44: Deadlocks

Deadlock Prevention (3/3)

I No preemption• If a process that is holding some resources, requests another

resource that cannot be immediately allocated to it, then allresources currently being held are released.

• Preempted resources are added to the list of resources for which theprocess is waiting.

• Process will be restarted only when it can regain its old resources,as well as the new ones that it is requesting.

I Circular wait• Impose a total ordering of all resource types, and require that each

process requests resources in an increasing order of enumeration.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 22 / 1

Page 45: Deadlocks

Deadlock Prevention (3/3)

I No preemption• If a process that is holding some resources, requests another

resource that cannot be immediately allocated to it, then allresources currently being held are released.

• Preempted resources are added to the list of resources for which theprocess is waiting.

• Process will be restarted only when it can regain its old resources,as well as the new ones that it is requesting.

I Circular wait• Impose a total ordering of all resource types, and require that each

process requests resources in an increasing order of enumeration.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 22 / 1

Page 46: Deadlocks

Deadlock Prevention (3/3)

I No preemption• If a process that is holding some resources, requests another

resource that cannot be immediately allocated to it, then allresources currently being held are released.

• Preempted resources are added to the list of resources for which theprocess is waiting.

• Process will be restarted only when it can regain its old resources,as well as the new ones that it is requesting.

I Circular wait• Impose a total ordering of all resource types, and require that each

process requests resources in an increasing order of enumeration.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 22 / 1

Page 47: Deadlocks

Deadlock Prevention (3/3)

I No preemption• If a process that is holding some resources, requests another

resource that cannot be immediately allocated to it, then allresources currently being held are released.

• Preempted resources are added to the list of resources for which theprocess is waiting.

• Process will be restarted only when it can regain its old resources,as well as the new ones that it is requesting.

I Circular wait• Impose a total ordering of all resource types, and require that each

process requests resources in an increasing order of enumeration.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 22 / 1

Page 48: Deadlocks

Deadlock Example with Lock Ordering

I Lock ordering does not guarantee deadlock prevention if locks canbe acquired dynamically.

void transaction(Account from, Account to, double amount) {

mutex lock1, lock2;

lock1 = get_lock(from);

lock2 = get_lock(to);

acquire(lock1);

acquire(lock2);

withdraw(from, amount);

deposit(to, amount);

release(lock2);

release(lock1);

}

transaction(checking_account, savings_account, 25);

transaction(savings_account, checking_account, 50);

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 23 / 1

Page 49: Deadlocks

Deadlock Avoidance

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 24 / 1

Page 50: Deadlocks

Deadlock Avoidance

I Requires that the system has some additional a priori informationavailable.

• The maximum number of resources of each type that it may need.

I The deadlock-avoidance algorithm dynamically examines theresource-allocation state to ensure that there can never be acircular-wait condition.

I Resource-allocation state is defined by the number of available andallocated resources, and the maximum demands of the processes.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 25 / 1

Page 51: Deadlocks

Deadlock Avoidance

I Requires that the system has some additional a priori informationavailable.

• The maximum number of resources of each type that it may need.

I The deadlock-avoidance algorithm dynamically examines theresource-allocation state to ensure that there can never be acircular-wait condition.

I Resource-allocation state is defined by the number of available andallocated resources, and the maximum demands of the processes.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 25 / 1

Page 52: Deadlocks

Deadlock Avoidance

I Requires that the system has some additional a priori informationavailable.

• The maximum number of resources of each type that it may need.

I The deadlock-avoidance algorithm dynamically examines theresource-allocation state to ensure that there can never be acircular-wait condition.

I Resource-allocation state is defined by the number of available andallocated resources, and the maximum demands of the processes.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 25 / 1

Page 53: Deadlocks

Safe State (1/2)

I When a process requests an available resource, system must decideif immediate allocation leaves the system in a safe state.

I Safe state: there exists a sequence 〈P1,P2, · · · ,Pn〉 of all theprocesses in the systems such that for each Pi , the resources thatPi can still request be satisfied bycurrently available resources + resources held by all the Pj , withj < i .

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 26 / 1

Page 54: Deadlocks

Safe State (1/2)

I When a process requests an available resource, system must decideif immediate allocation leaves the system in a safe state.

I Safe state: there exists a sequence 〈P1,P2, · · · ,Pn〉 of all theprocesses in the systems such that for each Pi , the resources thatPi can still request be satisfied bycurrently available resources + resources held by all the Pj , withj < i .

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 26 / 1

Page 55: Deadlocks

Safe State (2/2)

I If Pi resource needs are not immediately available, then Pi canwait until all Pj have finished.

I When Pj is finished, Pi can obtain needed resources, execute,return allocated resources, and terminate.

I When Pi terminates, Pi+1 can obtain its needed resources, and soon.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 27 / 1

Page 56: Deadlocks

Safe State (2/2)

I If Pi resource needs are not immediately available, then Pi canwait until all Pj have finished.

I When Pj is finished, Pi can obtain needed resources, execute,return allocated resources, and terminate.

I When Pi terminates, Pi+1 can obtain its needed resources, and soon.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 27 / 1

Page 57: Deadlocks

Safe State (2/2)

I If Pi resource needs are not immediately available, then Pi canwait until all Pj have finished.

I When Pj is finished, Pi can obtain needed resources, execute,return allocated resources, and terminate.

I When Pi terminates, Pi+1 can obtain its needed resources, and soon.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 27 / 1

Page 58: Deadlocks

Basic Facts

I If a system is in the safe state• No deadlock

I If a system is in the unsafe state• Possibility of deadlock

I Avoidance• Ensure that a system will never enter an unsafe state.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 28 / 1

Page 59: Deadlocks

Basic Facts

I If a system is in the safe state• No deadlock

I If a system is in the unsafe state• Possibility of deadlock

I Avoidance• Ensure that a system will never enter an unsafe state.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 28 / 1

Page 60: Deadlocks

Basic Facts

I If a system is in the safe state• No deadlock

I If a system is in the unsafe state• Possibility of deadlock

I Avoidance• Ensure that a system will never enter an unsafe state.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 28 / 1

Page 61: Deadlocks

Safe Mode Example (1/2)

I 3 processes: P0 through P2

I 1 resource type:• A (12 instances)

I Snapshot at time T0

I Safe mode sequence?

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 29 / 1

Page 62: Deadlocks

Safe Mode Example (1/2)

I 3 processes: P0 through P2

I 1 resource type:• A (12 instances)

I Snapshot at time T0

I Safe mode sequence?

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 29 / 1

Page 63: Deadlocks

Safe Mode Example (1/2)

I 3 processes: P0 through P2

I 1 resource type:• A (12 instances)

I Snapshot at time T0

I Safe mode sequence? 〈P1,P0,P2〉

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 29 / 1

Page 64: Deadlocks

Safe Mode Example (2/2)

I 3 processes: P0 through P2

I 1 resource type:• A (12 instances)

I Snapshot at time T0

I Suppose that, at time T1, process P2 requests and is allocated onemore resource.

I Safe mode sequence?

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 30 / 1

Page 65: Deadlocks

Safe Mode Example (2/2)

I 3 processes: P0 through P2

I 1 resource type:• A (12 instances)

I Snapshot at time T0

I Suppose that, at time T1, process P2 requests and is allocated onemore resource.

I Safe mode sequence?

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 30 / 1

Page 66: Deadlocks

Safe Mode Example (2/2)

I 3 processes: P0 through P2

I 1 resource type:• A (12 instances)

I Snapshot at time T0

I Suppose that, at time T1, process P2 requests and is allocated onemore resource.

I Safe mode sequence?

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 30 / 1

Page 67: Deadlocks

Safe Mode Example (2/2)

I 3 processes: P0 through P2

I 1 resource type:• A (12 instances)

I Snapshot at time T0

I Suppose that, at time T1, process P2 requests and is allocated onemore resource.

I Safe mode sequence? Not safe

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 30 / 1

Page 68: Deadlocks

Avoidance Algorithms

I Single instance of a resource type• Use a resource-allocation graph

I Multiple instances of a resource type• Use the banker’s algorithm

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 31 / 1

Page 69: Deadlocks

Resource-Allocation GraphAlgorithm

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 32 / 1

Page 70: Deadlocks

Resource-Allocation Graph Scheme

I Claim edge Pi → Rj : indicates that process Pj may requestresource Rj ; represented by a dashed line

I Claim edge converts to request edge when a process requests aresource.

I Request edge converted to an assignment edge when the resourceis allocated to the process.

I When a resource is released by a process, assignment edgereconverts to a claim edge.

I Resources must be claimed a priori in the system.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 33 / 1

Page 71: Deadlocks

Resource-Allocation Graph Scheme

I Claim edge Pi → Rj : indicates that process Pj may requestresource Rj ; represented by a dashed line

I Claim edge converts to request edge when a process requests aresource.

I Request edge converted to an assignment edge when the resourceis allocated to the process.

I When a resource is released by a process, assignment edgereconverts to a claim edge.

I Resources must be claimed a priori in the system.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 33 / 1

Page 72: Deadlocks

Resource-Allocation Graph Scheme

I Claim edge Pi → Rj : indicates that process Pj may requestresource Rj ; represented by a dashed line

I Claim edge converts to request edge when a process requests aresource.

I Request edge converted to an assignment edge when the resourceis allocated to the process.

I When a resource is released by a process, assignment edgereconverts to a claim edge.

I Resources must be claimed a priori in the system.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 33 / 1

Page 73: Deadlocks

Resource-Allocation Graph Scheme

I Claim edge Pi → Rj : indicates that process Pj may requestresource Rj ; represented by a dashed line

I Claim edge converts to request edge when a process requests aresource.

I Request edge converted to an assignment edge when the resourceis allocated to the process.

I When a resource is released by a process, assignment edgereconverts to a claim edge.

I Resources must be claimed a priori in the system.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 33 / 1

Page 74: Deadlocks

Resource-Allocation Graph Scheme

I Claim edge Pi → Rj : indicates that process Pj may requestresource Rj ; represented by a dashed line

I Claim edge converts to request edge when a process requests aresource.

I Request edge converted to an assignment edge when the resourceis allocated to the process.

I When a resource is released by a process, assignment edgereconverts to a claim edge.

I Resources must be claimed a priori in the system.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 33 / 1

Page 75: Deadlocks

Resource-Allocation Graph

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 34 / 1

Page 76: Deadlocks

Unsafe State In Resource-Allocation Graph

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 35 / 1

Page 77: Deadlocks

Resource-Allocation Graph Algorithm

I Suppose that process Pi requests a resource Rj .

I The request can be granted only if converting the request edge toan assignment edge does not result in the formation of a cycle inthe resource allocation graph.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 36 / 1

Page 78: Deadlocks

Banker’s Algorithm

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 37 / 1

Page 79: Deadlocks

Banker’s Algorithm

I Multiple instances

I Each process must a priori claim of the maximum use.

I When a process requests a resource it may have to wait.

I When a process gets all its resources, it must return them in afinite amount of time.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 38 / 1

Page 80: Deadlocks

Banker’s Algorithm

I Multiple instances

I Each process must a priori claim of the maximum use.

I When a process requests a resource it may have to wait.

I When a process gets all its resources, it must return them in afinite amount of time.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 38 / 1

Page 81: Deadlocks

Banker’s Algorithm

I Multiple instances

I Each process must a priori claim of the maximum use.

I When a process requests a resource it may have to wait.

I When a process gets all its resources, it must return them in afinite amount of time.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 38 / 1

Page 82: Deadlocks

Banker’s Algorithm

I Multiple instances

I Each process must a priori claim of the maximum use.

I When a process requests a resource it may have to wait.

I When a process gets all its resources, it must return them in afinite amount of time.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 38 / 1

Page 83: Deadlocks

Data Structures for Banker’s Algorithm

I n = number of processes, and m = number of resources types

I Available: vector of length m.• If Available[j ] = k, there are k instances of resource type Rj

available.

I Max : n ×m matrix.• If Max [i , j ] = k, then process Pi may request at most k instances of

resource type Rj .

I Allocation: n ×m matrix.• If Allocation[i , j ] = k then Pi is currently allocated k instances ofRj .

I Need : n ×m matrix.• If Need [i , j ] = k, then Pi may need k more instances of Rj to

complete its task Need [i , j ] = Max [i , j ]− Allocation[i , j ]

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 39 / 1

Page 84: Deadlocks

Data Structures for Banker’s Algorithm

I n = number of processes, and m = number of resources types

I Available: vector of length m.• If Available[j ] = k , there are k instances of resource type Rj

available.

I Max : n ×m matrix.• If Max [i , j ] = k, then process Pi may request at most k instances of

resource type Rj .

I Allocation: n ×m matrix.• If Allocation[i , j ] = k then Pi is currently allocated k instances ofRj .

I Need : n ×m matrix.• If Need [i , j ] = k, then Pi may need k more instances of Rj to

complete its task Need [i , j ] = Max [i , j ]− Allocation[i , j ]

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 39 / 1

Page 85: Deadlocks

Data Structures for Banker’s Algorithm

I n = number of processes, and m = number of resources types

I Available: vector of length m.• If Available[j ] = k , there are k instances of resource type Rj

available.

I Max : n ×m matrix.• If Max [i , j ] = k , then process Pi may request at most k instances of

resource type Rj .

I Allocation: n ×m matrix.• If Allocation[i , j ] = k then Pi is currently allocated k instances ofRj .

I Need : n ×m matrix.• If Need [i , j ] = k, then Pi may need k more instances of Rj to

complete its task Need [i , j ] = Max [i , j ]− Allocation[i , j ]

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 39 / 1

Page 86: Deadlocks

Data Structures for Banker’s Algorithm

I n = number of processes, and m = number of resources types

I Available: vector of length m.• If Available[j ] = k , there are k instances of resource type Rj

available.

I Max : n ×m matrix.• If Max [i , j ] = k , then process Pi may request at most k instances of

resource type Rj .

I Allocation: n ×m matrix.• If Allocation[i , j ] = k then Pi is currently allocated k instances ofRj .

I Need : n ×m matrix.• If Need [i , j ] = k, then Pi may need k more instances of Rj to

complete its task Need [i , j ] = Max [i , j ]− Allocation[i , j ]

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 39 / 1

Page 87: Deadlocks

Data Structures for Banker’s Algorithm

I n = number of processes, and m = number of resources types

I Available: vector of length m.• If Available[j ] = k , there are k instances of resource type Rj

available.

I Max : n ×m matrix.• If Max [i , j ] = k , then process Pi may request at most k instances of

resource type Rj .

I Allocation: n ×m matrix.• If Allocation[i , j ] = k then Pi is currently allocated k instances ofRj .

I Need : n ×m matrix.• If Need [i , j ] = k, then Pi may need k more instances of Rj to

complete its task Need [i , j ] = Max [i , j ]− Allocation[i , j ]

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 39 / 1

Page 88: Deadlocks

Safety Algorithm

1 Let Work and Finish be vectors of length m and n, respectively.Initialize:Work = AvailableFinish[i ] = false for i = 0, 1, · · · n − 1

2 Find an i such that both:1. Finish[i ] = false2. Needi ≤WorkIf no such i exists, go to step 4.

3 Work = Work + AllocationiFinish[i ] = trueGo to step 2

4 If Finish[i ] == true for all i , then the system is in a safe state.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 40 / 1

Page 89: Deadlocks

Safety Algorithm

1 Let Work and Finish be vectors of length m and n, respectively.Initialize:Work = AvailableFinish[i ] = false for i = 0, 1, · · · n − 1

2 Find an i such that both:1. Finish[i ] = false2. Needi ≤WorkIf no such i exists, go to step 4.

3 Work = Work + AllocationiFinish[i ] = trueGo to step 2

4 If Finish[i ] == true for all i , then the system is in a safe state.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 40 / 1

Page 90: Deadlocks

Safety Algorithm

1 Let Work and Finish be vectors of length m and n, respectively.Initialize:Work = AvailableFinish[i ] = false for i = 0, 1, · · · n − 1

2 Find an i such that both:1. Finish[i ] = false2. Needi ≤WorkIf no such i exists, go to step 4.

3 Work = Work + AllocationiFinish[i ] = trueGo to step 2

4 If Finish[i ] == true for all i , then the system is in a safe state.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 40 / 1

Page 91: Deadlocks

Safety Algorithm

1 Let Work and Finish be vectors of length m and n, respectively.Initialize:Work = AvailableFinish[i ] = false for i = 0, 1, · · · n − 1

2 Find an i such that both:1. Finish[i ] = false2. Needi ≤WorkIf no such i exists, go to step 4.

3 Work = Work + AllocationiFinish[i ] = trueGo to step 2

4 If Finish[i ] == true for all i , then the system is in a safe state.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 40 / 1

Page 92: Deadlocks

Resource-Request Algorithm for Process Pi (1/2)

I Requesti = request vector for process Pi . If Requesti [j ] = k , thenprocess Pi wants k instances of resource type Rj .

I 1. If Requesti ≤ Needi , go to step 2. Otherwise, raise errorcondition, since process has exceeded its maximum claim.

I 2. If Requesti ≤ Available, go to step 3. Otherwise Pi must wait,since resources are not available.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 41 / 1

Page 93: Deadlocks

Resource-Request Algorithm for Process Pi (2/2)

I 3. Pretend to allocate requested resources to Pi by modifying thestate as follows:Available = Available − RequestiAllocationi = Allocationi + RequestiNeedi = Needi − Requesti

• If safe: the resources are allocated to Pi

• If unsafe: Pi must wait, and the old resource-allocation state isrestored

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 42 / 1

Page 94: Deadlocks

Banker’s Algorithm Example (1/2)

I 5 processes: P0 through P4

I 3 resource types:• A (10 instances), B (5 instances), and C (7 instances)

I Snapshot at time T0

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 43 / 1

Page 95: Deadlocks

Banker’s Algorithm Example (2/2)

I The content of the matrix Need is defined to be Max − Allocation

I Is the system safe?

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 44 / 1

Page 96: Deadlocks

Banker’s Algorithm Example (2/2)

I The content of the matrix Need is defined to be Max − Allocation

I Is the system safe?

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 44 / 1

Page 97: Deadlocks

Banker’s Algorithm Example (2/2)

I The content of the matrix Need is defined to be Max − Allocation

I Is the system safe? 〈P1,P3,P4,P2,P0〉 satisfies safety criteria.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 44 / 1

Page 98: Deadlocks

Safety Algorithm Example

I P1 Request (1, 0, 2)

I Check that Request ≤ Available: (1, 0, 2) ≤ (3, 3, 2)⇒ true

I Executing safety algorithm shows that sequence〈P1,P3,P4,P0,P2〉 satisfies safety requirement.

I Can request for (3, 3, 0) by P4 be granted?

I Can request for (0, 2, 0) by P0 be granted?

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 45 / 1

Page 99: Deadlocks

Deadlock Detection

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 46 / 1

Page 100: Deadlocks

Deadlock Detection

I Allow system to enter deadlock state

I Detection algorithm

I Recovery scheme

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 47 / 1

Page 101: Deadlocks

Single Instance of Each Resource Type

I Maintain wait-for graph.• Nodes are processes.• Pi → Pj if Pi is waiting for Pj .

I Periodically invoke an algorithm that searches for a cycle in thegraph.

I If there is a cycle, there exists a deadlock.

I An algorithm to detect a cycle in a graph requires an O(n2)operations, where n is the number of vertices in the graph.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 48 / 1

Page 102: Deadlocks

Single Instance of Each Resource Type

I Maintain wait-for graph.• Nodes are processes.• Pi → Pj if Pi is waiting for Pj .

I Periodically invoke an algorithm that searches for a cycle in thegraph.

I If there is a cycle, there exists a deadlock.

I An algorithm to detect a cycle in a graph requires an O(n2)operations, where n is the number of vertices in the graph.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 48 / 1

Page 103: Deadlocks

Single Instance of Each Resource Type

I Maintain wait-for graph.• Nodes are processes.• Pi → Pj if Pi is waiting for Pj .

I Periodically invoke an algorithm that searches for a cycle in thegraph.

I If there is a cycle, there exists a deadlock.

I An algorithm to detect a cycle in a graph requires an O(n2)operations, where n is the number of vertices in the graph.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 48 / 1

Page 104: Deadlocks

Single Instance of Each Resource Type

I Maintain wait-for graph.• Nodes are processes.• Pi → Pj if Pi is waiting for Pj .

I Periodically invoke an algorithm that searches for a cycle in thegraph.

I If there is a cycle, there exists a deadlock.

I An algorithm to detect a cycle in a graph requires an O(n2)operations, where n is the number of vertices in the graph.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 48 / 1

Page 105: Deadlocks

Resource-Allocation Graph and Wait-for Graph

Resource-allocation graph Corresponding Wait-for graph

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 49 / 1

Page 106: Deadlocks

Data Structures for Deadlock Detection

I Available: vector of length m, indicates the number of availableresources of each type.

I Allocation: n ×m matrix, defines the number of resources of eachtype currently allocated to each process.

I Request: n ×m matrix, indicates the current request of eachprocess.

• If Request[i , j ] = k, then Pi requesting k more instances of resourcetype Rj .

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 50 / 1

Page 107: Deadlocks

Data Structures for Deadlock Detection

I Available: vector of length m, indicates the number of availableresources of each type.

I Allocation: n ×m matrix, defines the number of resources of eachtype currently allocated to each process.

I Request: n ×m matrix, indicates the current request of eachprocess.

• If Request[i , j ] = k, then Pi requesting k more instances of resourcetype Rj .

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 50 / 1

Page 108: Deadlocks

Data Structures for Deadlock Detection

I Available: vector of length m, indicates the number of availableresources of each type.

I Allocation: n ×m matrix, defines the number of resources of eachtype currently allocated to each process.

I Request: n ×m matrix, indicates the current request of eachprocess.

• If Request[i , j ] = k , then Pi requesting k more instances of resourcetype Rj .

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 50 / 1

Page 109: Deadlocks

Detection Algorithm (1/2)

I 1. Let Work and Finish be vectors of length m and n, respectively.Initialize:a. Work = Availableb. For i = 1, 2, · · · , n, if Allocationi 6= 0, then Finish[i ] = false;otherwise, Finish[i ] = true

I 2. Find an index i such that both:a. Finish[i ] == falseb. Requesti ≤Work

I If no such i exists, go to step 4

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 51 / 1

Page 110: Deadlocks

Detection Algorithm (2/2)

I 3. Work = Work + AllocationiFinish[i ] = truego to step 2

I 4. If Finish[i ] == false, for some i , 1 ≤ i ≤ n, then the system isin deadlock state. Moreover, if Finish[i ] == false, then Pi isdeadlocked.

I Algorithm requires an order of O(m × n2) operations to detectwhether the system is in deadlocked state.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 52 / 1

Page 111: Deadlocks

Detection Algorithm Example (1/2)

I 5 processes: P0 through P4

I 3 resource types:• A (7 instances), B (2 instances), and C (6 instances)

I Snapshot at time T0

I Deadlock?

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 53 / 1

Page 112: Deadlocks

Detection Algorithm Example (1/2)

I 5 processes: P0 through P4

I 3 resource types:• A (7 instances), B (2 instances), and C (6 instances)

I Snapshot at time T0

I Deadlock?

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 53 / 1

Page 113: Deadlocks

Detection Algorithm Example (1/2)

I 5 processes: P0 through P4

I 3 resource types:• A (7 instances), B (2 instances), and C (6 instances)

I Snapshot at time T0

I Deadlock? Sequence 〈P0,P2,P3,P1,P4〉 will result inFinish[i ] = true for all i

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 53 / 1

Page 114: Deadlocks

Detection Algorithm Example (2/2)

I P2 requests an additional instance of type C

I Can reclaim resources held by process P0, but insufficient resourcesto fulfill other processes; requests

I Deadlock exists, consisting of processes P1, P2, P3, and P4

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 54 / 1

Page 115: Deadlocks

Recovery From Deadlock

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 55 / 1

Page 116: Deadlocks

Recovery from Deadlock

I Process termination

I Resource preemption

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 56 / 1

Page 117: Deadlocks

Process Termination

I Abort all deadlocked processes.

I Abort one process at a time until the deadlock cycle is eliminated

I In which order should we choose to abort?1 Priority of the process.2 How long process has computed, and how much longer to

completion.3 Resources the process has used.4 Resources process needs to complete.5 How many processes will need to be terminated.6 Is process interactive or batch.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 57 / 1

Page 118: Deadlocks

Process Termination

I Abort all deadlocked processes.

I Abort one process at a time until the deadlock cycle is eliminated

I In which order should we choose to abort?1 Priority of the process.2 How long process has computed, and how much longer to

completion.3 Resources the process has used.4 Resources process needs to complete.5 How many processes will need to be terminated.6 Is process interactive or batch.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 57 / 1

Page 119: Deadlocks

Process Termination

I Abort all deadlocked processes.

I Abort one process at a time until the deadlock cycle is eliminated

I In which order should we choose to abort?1 Priority of the process.2 How long process has computed, and how much longer to

completion.3 Resources the process has used.4 Resources process needs to complete.5 How many processes will need to be terminated.6 Is process interactive or batch.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 57 / 1

Page 120: Deadlocks

Resource Preemption

I Selecting a victim: minimize cost

I Rollback: return to some safe state, restart process for that state.

I Starvation: same process may always be picked as victim, includenumber of rollback in cost factor.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 58 / 1

Page 121: Deadlocks

Summary

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 59 / 1

Page 122: Deadlocks

Summary

I Deadlock

I Four simultaneous conditions: mutual exclusion, hold and wait, nopreemption, circular wait

I Deadlock prevention:

I Deadlock avoidance: resource-allocation algorithm, banker’s algo-rithm

I Deadlock detection: Wait-for graph

I Deadlock recovery: process termination, resource preemption

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 60 / 1

Page 123: Deadlocks

Summary

I Deadlock

I Four simultaneous conditions: mutual exclusion, hold and wait, nopreemption, circular wait

I Deadlock prevention:

I Deadlock avoidance: resource-allocation algorithm, banker’s algo-rithm

I Deadlock detection: Wait-for graph

I Deadlock recovery: process termination, resource preemption

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 60 / 1

Page 124: Deadlocks

Summary

I Deadlock

I Four simultaneous conditions: mutual exclusion, hold and wait, nopreemption, circular wait

I Deadlock prevention:

I Deadlock avoidance: resource-allocation algorithm, banker’s algo-rithm

I Deadlock detection: Wait-for graph

I Deadlock recovery: process termination, resource preemption

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 60 / 1

Page 125: Deadlocks

Summary

I Deadlock

I Four simultaneous conditions: mutual exclusion, hold and wait, nopreemption, circular wait

I Deadlock prevention:

I Deadlock avoidance: resource-allocation algorithm, banker’s algo-rithm

I Deadlock detection: Wait-for graph

I Deadlock recovery: process termination, resource preemption

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 60 / 1

Page 126: Deadlocks

Summary

I Deadlock

I Four simultaneous conditions: mutual exclusion, hold and wait, nopreemption, circular wait

I Deadlock prevention:

I Deadlock avoidance: resource-allocation algorithm, banker’s algo-rithm

I Deadlock detection: Wait-for graph

I Deadlock recovery: process termination, resource preemption

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 60 / 1

Page 127: Deadlocks

Summary

I Deadlock

I Four simultaneous conditions: mutual exclusion, hold and wait, nopreemption, circular wait

I Deadlock prevention:

I Deadlock avoidance: resource-allocation algorithm, banker’s algo-rithm

I Deadlock detection: Wait-for graph

I Deadlock recovery: process termination, resource preemption

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 60 / 1

Page 128: Deadlocks

Questions?

Acknowledgements

Some slides were derived from Avi Silberschatz slides.

Amir H. Payberah (Tehran Polytechnic) Deadlocks 1393/8/3 61 / 1