Skip to content

Commit 5053b70

Browse files
author
Viktor Klang
committedMay 11, 2024
8278255: Add more warning text in ReentrantLock and ReentrantReadWriteLock
Reviewed-by: prappo, alanb
1 parent 32c7681 commit 5053b70

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed
 

‎src/java.base/share/classes/java/util/concurrent/locks/Lock.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,11 @@
8080
*
8181
* <pre> {@code
8282
* Lock l = ...;
83-
* l.lock();
83+
* l.lock(); // lock() as the last statement before the try block
8484
* try {
8585
* // access the resource protected by this lock
8686
* } finally {
87-
* l.unlock();
87+
* l.unlock(); // unlock() as the first statement in the finally block
8888
* }}</pre>
8989
*
9090
* When locking and unlocking occur in different scopes, care must be

‎src/java.base/share/classes/java/util/concurrent/locks/ReentrantLock.java

+5-4
Original file line numberDiff line numberDiff line change
@@ -71,20 +71,21 @@
7171
* is available even if other threads are waiting.
7272
*
7373
* <p>It is recommended practice to <em>always</em> immediately
74-
* follow a call to {@code lock} with a {@code try} block, most
75-
* typically in a before/after construction such as:
74+
* follow a call to {@code lock} with a {@code try} block, and
75+
* to <em>always</em> immediately call {@code unlock} as the
76+
* first statement in the finally block, as follows:
7677
*
7778
* <pre> {@code
7879
* class X {
7980
* private final ReentrantLock lock = new ReentrantLock();
8081
* // ...
8182
*
8283
* public void m() {
83-
* lock.lock(); // block until condition holds
84+
* lock.lock(); // lock() as the last statement before the try block
8485
* try {
8586
* // ... method body
8687
* } finally {
87-
* lock.unlock();
88+
* lock.unlock(); // unlock() as the first statement in the finally block
8889
* }
8990
* }
9091
* }}</pre>

‎src/java.base/share/classes/java/util/concurrent/locks/ReentrantReadWriteLock.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@
141141
*
142142
* void processCachedData() {
143143
* rwl.readLock().lock();
144+
* // Code between the lock() above, and the unlock() below must not throw
144145
* if (!cacheValid) {
145146
* // Must release read lock before acquiring write lock
146147
* rwl.readLock().unlock();
@@ -158,7 +159,7 @@
158159
* rwl.writeLock().unlock(); // Unlock write, still hold read
159160
* }
160161
* }
161-
*
162+
* // Make sure that code that could throw is executed inside the try block
162163
* try {
163164
* use(data);
164165
* } finally {

0 commit comments

Comments
 (0)
Please sign in to comment.