codecamp

GDB 多线程 (non-stop)

1. 背景

    这几天在扩展 ngx_lua 模块,但 gdb 定位时,提示:Thread debugging using libthread_db enabled。

2. GDB non-stop 配置

    把以下3行添加到 ~/.gdbinit 来打开 non-stop 模式

set target-async 1
set pagination off
set non-stop on

    PS:无 ~/.gdbinit 文件,可以创建此文件,或修改 /etc/gdb 下对应文件

3. 文件更新立即生效

source ~/.gdbinit

参考文章: https://www.cnblogs.com/dongzhiquan/archive/2011/07/09/2101578.html


    


clear: command not found 命令无法找到
IPV6
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }