Sync (oswego) vs Lock (JDK5) - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T04:57:35Zhttp://stackoverflow.com/feeds/question/699838http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/699838/sync-oswego-vs-lock-jdk50Sync (oswego) vs Lock (JDK5)Jacques René Mesrine2009-03-31T02:49:50Z2009-03-31T20:17:42Z
<p>Just to be sure, can experts confirm that</p>
<p>java.util.concurrent.locks.Lock </p>
<p>and Doug Lea's original <a href="http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/Sync.html" rel="nofollow">Sync</a> </p>
<p>are basically the same thing but with different names.</p>
<ul>
<li>acquire vs lock</li>
<li>release vs unlock</li>
</ul>
<p>Thanks.</p>
http://stackoverflow.com/questions/699838/sync-oswego-vs-lock-jdk5/699932#6999320Answer by Thilo for Sync (oswego) vs Lock (JDK5)Thilo2009-03-31T03:50:45Z2009-03-31T03:50:45Z<p>For what it is worth, the source code for <a href="http://www.docjar.com/html/api/java/util/concurrent/locks/Lock.java.html" rel="nofollow">java.util.concurrent.locks.Lock</a> lists Doug Lea as its author. Same goes for many other files in that package.</p>
<pre><code> /*
* This file is available under and governed by the GNU General Public
* License version 2 only, as published by the Free Software Foundation.
* However, the following notice accompanied the original version of this
* file:
*
* Written by Doug Lea with assistance from members of JCP JSR-166
* Expert Group and released to the public domain, as explained at
* http://creativecommons.org/licenses/publicdomain
*/
</code></pre>
http://stackoverflow.com/questions/699838/sync-oswego-vs-lock-jdk5/702849#7028491Answer by Peter Lawrey for Sync (oswego) vs Lock (JDK5)Peter Lawrey2009-03-31T20:17:42Z2009-03-31T20:17:42Z<p>A ReentrantLock which implements Lock wraps a class called Sync. All were written by Doug Lea. I suggest you try to use the libraries in Java.</p>