When using multiple threads, shared memory needs to be locked by critical sections. However, using critical sections causes potential deadlocks. How can they be avoided?
|
1
|
|||||||||||||||||||||
|
|
|
The Related list to the right on this page contains a few links that provides interesting information on the topic. In addition to that list, there are many other SO questions discussing the topic, such as |
||
|
|
|
When I work in C++, the following works for me:
It's not a general deadlock avoidance method. |
|||
|
|
|
|
One way is to use a hierarchy of critical sections. If you ensure that a parent critical section is never entered within one of its children. The difficulty is to enforce this hierarchy. |
||
|
|
|
|
You can avoid critical sections by using message passing instead (synchronous and asynchronous calls). When using synchronous calls, you still have to make sure not to make a circular call, in which thread A asks thread B a question, and B needs to ask A a question to be able to respond. Another option is to make asynchronous calls instead. However, it is more difficult to get return values. Note: Indeed, a message passing system is implemented using a critical section that locks the call queue, but it is abstracted away. |
||
|
|
|
|
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. |
||
|
|
|
|
You must code multi-thread programs very carefully. There's no short-cut, you must understand the flow of your program, otherwise you'll be doomed. |
|||
|
|
