1. 背景
這幾天在擴(kuò)展 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 文件,可以創(chuàng)建此文件,或修改 /etc/gdb 下對應(yīng)文件
3. 文件更新立即生效
source ~/.gdbinit
參考文章: https://www.cnblogs.com/dongzhiquan/archive/2011/07/09/2101578.html
更多建議: