cond.waitUntilWithTimeout(Boolean.TRUE, 2000);
}
public void testDoubleLocking() throws org.jgroups.TimeoutException {
final Map m=new HashMap();
final CondVar c=new CondVar("bla", Boolean.FALSE, m);
new Thread() {
public void run() {
Util.sleep(1000);
_setValue(m, c);