我遇到了这个回溯的独角兽服务器工作人员随机崩溃。我是通过gdb(bt命令)和核心转储获得的。
#0 0x00007f2f525830c2 in select () from /lib/libc.so.6
#1 0x00007f2f5343025c in thread_timer () from /usr/lib64/libruby19.so.1.9
#2 0x00007f2f530d0047 in start_thread () from /lib/libpthread.so.0
#3 0x00007f2f5258928d in clone () from /lib/libc.so.6
#4 0x0000000000000000 in ?? ()
如何获取更多信息?
答案 0 :(得分:3)
如何获取更多信息?
这可能不您正在寻找的线程(某些其他线程已崩溃)。
此GDB命令可以帮助您找到其他线程:thread apply all where
。