can somebody please explain what is the difference between deadlock and livelock, with small examples (examples I mean code), thanks in advance

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Taken from http://en.wikipedia.org/wiki/Deadlock:

A livelock is similar to a deadlock, except that the states of the processes involved in the livelock constantly change with regard to one another, none progressing. Livelock is a special case of resource starvation; the general definition only states that a specific process is not progressing.

A real-world example of livelock occurs when two people meet in a narrow corridor, and each tries to be polite by moving aside to let the other pass, but they end up swaying from side to side without making any progress because they both repeatedly move the same way at the same time.

Livelock is a risk with some algorithms that detect and recover from deadlock. If more than one process takes action, the deadlock detection algorithm can be repeatedly triggered. This can be avoided by ensuring that only one process (chosen randomly or by priority) takes action.

link|improve this answer
I found it already, but they don't have examples there as You could see, thanks anyway – macindows May 27 '11 at 17:57
1  
I won't provide a code example, but consider two processes each waiting for a resource the other has but waiting in a non-blocking manner. When each learns they cannot continue they release their held resource and sleep for 30 seconds, then they retrieve their original resource followed by trying to the resource the other process held, then left, then reaquired. Since both processes are trying to cope (just badly), this is a livelock. – mah May 27 '11 at 17:58
can You give me the same example but with deadlock, thanks in advance – macindows May 27 '11 at 18:31
A deadlock example is much easier... assume two processes A and B, and each wants resource r1 and resource r2. Assume A receives (or already has) r1, and B receives (or already has) r2. Now each try to get the resource the other has, without any timeout. A is blocked because B holds r2, and B is blocked because A holds r1. Each process is blocked and thus cannot release the resource the other wants, causing deadlock. – mah May 27 '11 at 18:51
thank You – macindows May 27 '11 at 19:00
feedback

DEADLOCK Deadlock is a condition in which a task waits indefinitely for conditions that can never be satisfied - task claims exclusive control over shared resources - task holds resources while waiting for other resources to be released - tasks cannot be forced to relinguish resources - a circular waiting condition exists

LIVELOCK Livelock conditions can arise when two or more tasks depend on and use the some resource causing a circular dependency condition where those tasks continue running forever, thus blocking all lower priority level tasks from running (these lower priority tasks experience a condition called starvation)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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