Why does AbstractQueuedSynchronizer interrupt on acquring lock - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T14:29:42Z http://stackoverflow.com/feeds/question/207946 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/207946/why-does-abstractqueuedsynchronizer-interrupt-on-acquring-lock 1 Why does AbstractQueuedSynchronizer interrupt on acquring lock pdeva 2008-10-16T09:37:04Z 2009-11-15T21:28:22Z <p>I was looking at the source code of java.uti.concurrent.locks.AbstractQueuedSynchronizer and the acquire() method looks something like this -</p> <pre><code> public final void acquire(int arg) { if (!tryAcquire(arg) &amp;&amp; acquireQueued(addWaiter(Node.EXCLUSIVE), arg)) Thread.currentThread().interrupt(); } </code></pre> <p>Why does it interrupt the thread calling acquire()? If there was check somewhere in the threads run() method, then it might pass after calling acquire() which is probably undesirable and unthought of?</p> <p>Anybody care to shed light on why the above piece of code does this?</p> http://stackoverflow.com/questions/207946/why-does-abstractqueuedsynchronizer-interrupt-on-acquring-lock/207956#207956 4 Answer by Chris Jester-Young for Why does AbstractQueuedSynchronizer interrupt on acquring lock Chris Jester-Young 2008-10-16T09:44:34Z 2008-10-16T09:44:34Z <p>If you read the Javadoc for <code>acquiredQueued</code>, you will noticed that it returns true if the thread was interrupted while waiting. Thus, the call to <code>selfInterrupt</code> (as it's called in the OpenJDK source code) is to propagate the interrupt to the calling thread, which would otherwise get swallowed.</p>