Warning: session_start(): open(/var/lib/php/sessions/sess_4aov56ol0jkitasbne9i6epshd, 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
static S renderUserThreadsWithStackTraces() {
ret renderUserThreadsWithStackTraces(Thread.getAllStackTraces());
}
static S renderUserThreadsWithStackTraces(Map threadMap) {
ret renderUserThreadsWithStackTraces(threadMap, "user thread");
}
static S renderUserThreadsWithStackTraces(Map threadMap, S threadDescription) {
new StringBuilder buf;
int n = 0;
for (Thread t : threadMap.keySet()) {
ThreadGroup g = t.getThreadGroup();
if (g != null && g.getName().equals("system")) continue;
++n;
printTo(buf, t);
for (StackTraceElement e : threadMap.get(t)) {
printTo(buf, " " + e);
}
printTo(buf);
}
printTo(buf, n(n, threadDescription) + ".");
ret asciiHeading2(n(n, threadDescription) + " (+" + (l(threadMap)-n) + ")") + "\n" + buf;
}