Warning: session_start(): open(/var/lib/php/sessions/sess_sqo5n66mivq59816jkhmh0762b, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
// TODO: either put ExternalMutex in JavaX
// or make externalMutexMap local
static IAutoCloseableF0 tempExternalMutexFor(O o) {
var map = externalMutexMap();
synchronized(map) {
ExternalMutex mutex = map.get(o);
if (mutex == null)
map.put(o, mutex = new ExternalMutex);
var _mutex = mutex;
mutex.incRefCount();
ret new IAutoCloseableF0 {
public O get() { ret _mutex; }
public void close {
synchronized(map) {
if (_mutex.decRefCount() == 0)
map.remove(o);
}
}
};
}
}