Consider the following method:
public void getLocks(Object a, Object b){
synchronized(a){
synchronized(b){
//do something
}
}
}
and the following instantiations:
Object obj1 = new Object();
Object obj2 = new Object();
obj1 and obj2 are accessible to two different threads and the threads are about to call the
getLocks()
method.
Assume the first thread calls the method
getLocks(obj1, obj2).
Which of the following options avoids a deadlock?
- The second thread should call getLocks(obj2, obj1)
- The second thread should call getLocks(obj1, obj2)
- The second thread should call getLocks() only after first thread exits out of it.
- The second thread may call getLocks() any time and passing parameters in any order.
- None of the above.
Answer: b
Explanation:
a. This may result in a deadlock.
c. This is not necessary and option 2 works correctly.
d. It should not call
getLocks(obj2, obj1)
because it may result in a deadlock.