c – 如何将gdb的完整堆栈跟踪传输到文件?
发布时间:2020-12-16 09:55:04 所属栏目:百科 来源:网络整理
导读:我正试图获得堆栈跟踪,因为我的服务陷入了僵局. 我正在使用 gdb binary core.dumpgdb set logging ongdb thread apply all bt full... Here now i have to keep pressing ENTER till i get to end of all the thread trace. It takes around 5 mins for me t
我正试图获得堆栈跟踪,因为我的服务陷入了僵局.
我正在使用 gdb <binary> core.dump gdb> set logging on gdb> thread apply all bt full ... Here now i have to keep pressing ENTER till i get to end of all the thread trace. It takes around 5 mins for me to get all these traces? 在单个命令中获取所有线程的堆栈跟踪以管道到文件的任何技巧? 解决方法
您应该关闭长输出的分页,如下所示:
$gdb <binary> core.dump (gdb) set logging on (gdb) set pagination off (gdb) thread apply all bt full 请参阅gdb常见问题和文档: > https://sourceware.org/gdb/wiki/FAQ#How_do_I_disable_the_.22Type_.3Creturn.3E_to_continue.2C_or_q_.3Creturn.3E_to_quit.22_pagination_prompt_in_GDB.3F (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |