Warning: session_start(): open(/var/lib/php/sessions/sess_8tonats8lnvrvog7u3h59a8cri, 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
// Note: The maps are nested like with ThreadLocal (lookup thread first, then variable.)
sclass FiberLocal {
// internal
Map flv() { ret currentFiber().fiberLocalValues; }
bool isSet() { ret flv().containsKey(this); }
A get() {
ret flv().get(this);
}
void set(A a) {
mapPutOrRemove(flv(), this, a);
}
}