Searched refs:prepareLatch (Results 1 - 1 of 1) sorted by relevance

/openjdk9/jdk/test/java/lang/annotation/AnnotationType/
H A DAnnotationTypeDeadlockTest.java53 final CountDownLatch prepareLatch; field in class:AnnotationTypeDeadlockTest.Task
57 Task(CountDownLatch prepareLatch, AtomicInteger goLatch, Class<?> clazz) { argument
60 this.prepareLatch = prepareLatch;
67 prepareLatch.countDown(); // notify we are prepared
74 CountDownLatch prepareLatch = new CountDownLatch(2);
76 Task taskA = new Task(prepareLatch, goLatch, AnnA.class);
77 Task taskB = new Task(prepareLatch, goLatch, AnnB.class);
81 prepareLatch.await();

Completed in 76 milliseconds