Warning: session_start(): open(/var/lib/php/sessions/sess_ga579be24hdgfufuhqpj3lb0m5, 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 L printDeadlocks_monitorsOnly() {
ThreadMXBean bean = ManagementFactory.getThreadMXBean();
long ids[] = bean.findMonitorDeadlockedThreads();
if (empty(ids)) ret emptyList();
printAsciiHeading("DEADLOCKED THREADS!");
ThreadInfo threadInfo[] = bean.getThreadInfo(ids);
int i = 0;
for (ThreadInfo threadInfo1 : threadInfo) {
print("Thread " + (++i) + "/" + l(threadInfo) + ": ID=" + threadInfo1.getThreadId()
+ ", name=" + quote(threadInfo1.getThreadName()));
print(" Trying to lock: " + threadInfo1.getLockName()
+ " which is owned by thread " + threadInfo1.getLockOwnerId()
+ " (" + quote(threadInfo1.getLockOwnerName()) + ")");
}
print();
ret asList(threadInfo);
}