792793794795796797798799800801802
final CountDownLatch latch = new CountDownLatch(1); lock.lock(); Thread t = new Thread() { public void run() { try { lock.lockInterruptibly(); } catch (InterruptedException e) { latch.countDown(); } } };