Good example of livelock? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T10:31:22Z http://stackoverflow.com/feeds/question/1036364 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1036364/good-example-of-livelock 1 Good example of livelock? Alex Miller 2009-06-24T04:15:46Z 2009-06-25T20:46:57Z <p>I understand what livelock is but I was wondering if anyone had a good code-based example of it? And by code-based, I do NOT mean "two people trying to get past each other in a corridor". If I read that again, I'll lose my lunch. </p> http://stackoverflow.com/questions/1036364/good-example-of-livelock/1041470#1041470 3 Answer by 1800 INFORMATION for Good example of livelock? 1800 INFORMATION 2009-06-24T23:21:15Z 2009-06-25T20:46:57Z <p>Flippant comments aside, one example which is known to come up is in code which tries to detect and handle deadlock situations. If two threads detect a deadlock, and try to "step aside" for each other, without care they will end up being stuck in a loop always "stepping aside" and never managing to move forwards.</p> <p>By "step aside" I mean that they would release the lock and attempt to let the other one acquire it. We might imagine the situation with two threads doing this (pseudocode):</p> <pre><code>// thread 1 getLocks12(lock1, lock2) { lock1.lock(); while (lock2.locked()) { // attempt to step aside for the other thread lock1.unlock(); wait(); lock1.lock(); } lock2.lock(); } // thread 2 getLocks21(lock1, lock2) { lock2.lock(); while (lock1.locked()) { // attempt to step aside for the other thread lock2.unlock(); wait(); lock2.lock(); } lock2.lock(); } </code></pre> <p>Race conditions aside, what we have here is a situation where both threads, if they enter at the same time will end up running in the inner loop without proceeding. Obviously this is a simplified example. A naiive fix would be to put some kind of randomness in the amount of time the threads would wait.</p> <p>The proper fix is to always respect the <a href="http://www.ddj.com/hpc-high-performance-computing/204801163?pgno=5" rel="nofollow">lock heirarchy</a>. Pick an order in which you acquire the locks and stick to that. For example if both threads always acquire lock1 before lock2, then there is no possibility of deadlock.</p> http://stackoverflow.com/questions/1036364/good-example-of-livelock/1043881#1043881 0 Answer by Alex Miller for Good example of livelock? Alex Miller 2009-06-25T13:20:28Z 2009-06-25T13:20:28Z <p>One example here might be using a timed tryLock to obtain more than one lock and if you can't obtain them all, back off and try again.</p> <pre><code>boolean tryLockAll(Collection&lt;Lock&gt; locks) { boolean grabbedAllLocks = false; for(int i=0; i&lt;locks.size(); i++) { Lock lock = locks.get(i); if(!lock.tryLock(5, TimeUnit.SECONDS)) { grabbedAllLocks = false; // undo the locks I already took in reverse order for(int j=i-1; j &gt;= 0; j--) { lock.unlock(); } } } } </code></pre> <p>I could imagine such code would be problematic as you have lots of threads colliding and waiting to obtain a set of locks. But I'm not sure this is very compelling to me as a simple example. </p>