public BooleanMutex(Boolean mutex) { sync = new Sync(); set(mutex); }
public BooleanMutex() { sync = new Sync(); set(false); }