What are the best practices/idioms should someone follow in order to avoid deadlocks?
|
2
|
|
|
|
|
|
Please see What are common reasons for deadlocks? |
||
|
|
|
|
Among the various methods to enter critical sections -- semaphores and mutexs are the most popular.
These 2 according to me are the basic conditions, the remaining 2 of the common 4 precautions can be related to these. If u dont agree ps add comments. I've gtg already late, I will later add a cleaner and clearer explanation. |
||
|
|
|
|
There are four conditions which must occur for deadlock to occur:
Avoid at least one of these, and preferably more, and you shouldn't have too many problems. |
||
|
|
|
|
The best practice would be by defining a class for your thread and use only non-static fields from this class in your thread so your threads won't be sharing any memory. |
||
|
|
|
|
There is so called Banker's algorithm, for deadlock avoidance. Also you can consider the use of Watch Dog in order to break out form deadlock. Here also few interesting points. |
||
|
|
|
|
The canonical technique for deadlock avoidance is to have a lock hierarchy. Make sure that all threads acquire locks or other resources in the same order. This avoids the deadlock scenario where thread 1 hold lock A and needs lock B while thread 2 holds lock B and needs lock A. With a lock hierarchy, both threads would have to acquire the locks in the same order (say, A before B). |
||
|
|
