diff options
author | Sven Gothel <[email protected]> | 2011-09-27 11:35:01 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-09-27 11:35:01 +0200 |
commit | 73ac81eefce6b0dbf6922d2475c4b9eb9ed8a819 (patch) | |
tree | 7c02cdf2174cc13e94e481d1d79c98610e6ea659 /src/java/com/jogamp/common/util/locks/Lock.java | |
parent | 4ba2f8304d8e557fff9874f9e214d476f44e40e0 (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.java | 6 |
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. |