aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/com/jogamp/common/util/locks/Lock.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2011-09-27 11:35:01 +0200
committerSven Gothel <[email protected]>2011-09-27 11:35:01 +0200
commit73ac81eefce6b0dbf6922d2475c4b9eb9ed8a819 (patch)
tree7c02cdf2174cc13e94e481d1d79c98610e6ea659 /src/java/com/jogamp/common/util/locks/Lock.java
parent4ba2f8304d8e557fff9874f9e214d476f44e40e0 (diff)
Lock ChangeSet: New RecursiveLock interface. Minor API change to of tryLock throws declaration
Diffstat (limited to 'src/java/com/jogamp/common/util/locks/Lock.java')
-rw-r--r--src/java/com/jogamp/common/util/locks/Lock.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/java/com/jogamp/common/util/locks/Lock.java b/src/java/com/jogamp/common/util/locks/Lock.java
index ad379ef..41c5a14 100644
--- a/src/java/com/jogamp/common/util/locks/Lock.java
+++ b/src/java/com/jogamp/common/util/locks/Lock.java
@@ -59,14 +59,14 @@ public interface Lock {
/**
* Blocking until the lock is acquired by this Thread or <code>maxwait</code> in ms is reached.
*
- * @param maxwait Maximum time in ms to wait to acquire the lock. If this value is zero,
+ * @param timeout Maximum time in ms to wait to acquire the lock. If this value is zero,
* the call returns immediately either without being able
* to acquire the lock, or with acquiring the lock directly while ignoring any scheduling order.
* @return true if the lock has been acquired within <code>maxwait</code>, otherwise false
*
- * @throws RuntimeException in case of {@link #TIMEOUT}
+ * @throws InterruptedException
*/
- boolean tryLock(long maxwait) throws RuntimeException;
+ boolean tryLock(long timeout) throws InterruptedException;
/**
* Unblocking.