static void waitWhileEmpty(SelfNotifyingSet set) ctex { if (set == null) ret; synchronized(set) { while (set.isEmpty()) set.wait(); } }