vote up 4 vote down star
1

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?

flag

35% accept rate
3  
Why the downvote? And more importantly, why is this being closed? – musicfreak Jun 29 at 8:08
1  
make this community wiki - right now it just looks like reputation farming – Pete Kirkham Jun 29 at 8:51
2  
Hm. It sounded like a perfectly valid question to me, one I'dd really like to see answered. – Dimitri C. Jun 29 at 9:04
1  
Closing this as "not a real question" was stupid. While this may be a duplicate, this definitely is a real question. – Joonas Pulakka Nov 17 at 12:12
1  
voting for reopen. this is a very important, very interesting question. – Stefano Borini Nov 17 at 12:13
show 1 more comment

6 Answers

vote up 3 vote down

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

...and many more

link|flag
Thanks, I'll have a look at those questions. – Dimitri C. Jun 29 at 8:12
vote up 1 vote down

When I work in C++, the following works for me:

  1. all public methods (excluding ctor and dtor) of a threadsafe class lock

  2. private methods cannot call public methods

It's not a general deadlock avoidance method.

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

Among the various methods to enter critical sections -- semaphores and mutexs are the most popular.

  • A semaphore is a waiting mechanism and mutex is a locking mechanism, well the concept is confusing to the most, but in short, a thread activating a mutex can only deactivate it. with this in mind...

  • Dont allow any process to lock partial no of resources, if a process need 5 resources, wait until all the are available.

  • if u use semaphore here, u can unblock/un-wait the resource occupied by other thread. by this i mean pre-emption is another reason.

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.

link|flag
vote up -1 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.