多线程调试必杀技 - GDB的non-stop模式

2023-10-10 07:48

本文主要是介绍多线程调试必杀技 - GDB的non-stop模式,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

non-stop模式理所当然成为多线程调试“必杀技”。这2009年下半年之后发布的Linux版本里都带有GDBv7.0之后的版本。很好奇,不知道VS2010里是不是也支持类似的调试模式了。
TAG: GDB 多线程调试

作者:破砂锅

开源的GDB被广泛使用在Linux、OSX、Unix和各种嵌入式系统(例如手机),这次它又带给我们一个惊喜。

多线程调试之痛

调试器(如VS2008和老版GDB)往往只支持all-stop模式,调试多线程程序时,如果某个线程断在一个断点上,你的调试器会让整个程序 freeze,直到你continue这个线程,程序中的其他线程才会继续运行。这个限制使得被调试的程序不能够像真实环境中那样运行--当某个线程断在 一个断点上,让其他线程并行运行。

GDBv7.0引入的non-stop模式使得这个问题迎刃而解。在这个模式下,

  • 当某个或多个线程断在一个断点上,其他线程仍会并行运行
  • 你可以选择某个被断的线程,并让它继续运行

让我们想象一下,有了这个功能后

  • 当其他线程断在断点上时,程序里的定时器线程可以正常的运行了,从而避免不必要得超时
  • 当其他线程断在断点上时,程序里的watchdog线程可以正常的运行了,从而避免嵌入式硬件以为系统崩溃而重启
  • 可以控制多个线程运行的顺序,从而重现deadlock场景了。由于GDB可以用python脚本驱动调试,理论上可以对程序在不同的线程运行顺序下进行自动化测试。

因此,non-stop模式理所当然成为多线程调试“必杀技”。这2009年下半年之后发布的Linux版本里都带有GDBv7.0之后的版本。很好奇,不知道VS2010里是不是也支持类似的调试模式了。

演示GDB的non-stop模式

让破砂锅用一个C++小程序在Ubuntu Linux 09.10下demo这个必杀技。虽然我的demo使用命令行版gdb,如果你喜欢图形化的调试器,Eclipse2009年5月之后的版本可以轻松的调 用这个功能,详情参见Eclipse参见http://live.eclipse.org/node/723

1. 编译以下程序nonstop

      
  1. // gdb non-stop mode demo
  2. // build instruction: g++ -g -o nonstop nonstop.cpp -lboost_thread
  3. #include <iostream>
  4. #include <boost/thread/thread.hpp>
  5. struct op
  6. {
  7. op(int id): m_id(id) {}
  8. void operator()()
  9. {
  10. std::cout << m_id << " begin" << std::endl;
  11. std::cout << m_id << " end" << std::endl;
  12. }
  13. int m_id;
  14. };
  15. int main(int argc, char ** argv)
  16. {
  17. boost::thread t1(op(1)), t2(op(2)), t3(op(3));
  18. t1.join(); t2.join(); t3.join();
  19. return 0;
  20. }

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

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

3. 启动gdb,设断点,运行.可以看到主线程1是running,3个子线程都断在断点上,而不是只有一个子线程断在断点上.

      
  1. ~/devroot/nonstop$ gdb ./nonstop
  2. GNU gdb (GDB) 7.0-ubuntu
  3. Reading symbols from /home/frankwu/devroot/nonstop/nonstop...done.
  4. (gdb) break 14
  5. Breakpoint 1 at 0x402058: file nonstop.cpp, line 14.
  6. (gdb) break 24
  7. Breakpoint 3 at 0x401805: file nonstop.cpp, line 24.
  8. (gdb) run
  9. Starting program: /home/frankwu/devroot/nonstop/nonstop
  10. [Thread debugging using libthread_db enabled]
  11. [New Thread 0x7ffff6c89910 (LWP 2762)]
  12. [New Thread 0x7ffff6488910 (LWP 2763)]
  13. begin
  14. Breakpoint 1, op::operator() (this=0x605118) at nonstop.cpp:14
  15. std::cout << m_id << " end" << std::endl;
  16. begin
  17. Breakpoint 1, op::operator() (this=0x605388) at nonstop.cpp:14
  18. std::cout << m_id << " end" << std::endl;
  19. [New Thread 0x7ffff5c87910 (LWP 2764)]
  20. begin
  21. Breakpoint 1, op::operator() (this=0x605618) at nonstop.cpp:14
  22. std::cout << m_id << " end" << std::endl;
  23. (gdb) info threads
  24. Thread 0x7ffff5c87910 (LWP 2764) op::operator() (this=0x605618) at nonstop.cpp:14
  25. Thread 0x7ffff6488910 (LWP 2763) op::operator() (this=0x605388) at nonstop.cpp:14
  26. Thread 0x7ffff6c89910 (LWP 2762) op::operator() (this=0x605118) at nonstop.cpp:14
  27. * 1 Thread 0x7ffff7fe3710 (LWP 2759) (running)

4. 让线程3继续运行,注意我顾意把主线程1也continue,这是我发现的workaround,否则gdb不能切回thread 1.

      
  1. (gdb) thread apply 3 1 continue
  2. Thread 3 (Thread 0x7ffff6488910 (LWP 2763)):
  3. Continuing.
  4. Thread 1 (Thread 0x7ffff7fe3710 (LWP 2759)):
  5. Continuing.
  6. Cannot execute this command while the selected thread is running.
  7. end
  8. [Thread 0x7ffff6488910 (LWP 2763) exited]
  9. warning: Unknown thread 3.
  10. Thread 1 (Thread 0x7ffff7fe3710 (LWP 2759)):
  11. Continuing.
  12. Cannot execute this command while the selected thread is running.
  13. (gdb) info threads
  14. Thread 0x7ffff5c87910 (LWP 2764) op::operator() (this=0x605618) at nonstop.cpp:14
  15. Thread 0x7ffff6c89910 (LWP 2762) op::operator() (this=0x605118) at nonstop.cpp:14
  16. * 1 Thread 0x7ffff7fe3710 (LWP 2759) (running)

5. 让另外两个线程继续运行而结束,主线程断在第24行,最后结束.

      
  1. (gdb) thread apply 4 2 1 continue
  2. Thread 4 (Thread 0x7ffff5c87910 (LWP 2764)):
  3. Continuing.
  4. Thread 2 (Thread 0x7ffff6c89910 (LWP 2762)):
  5. Continuing.
  6. Thread 1 (Thread 0x7ffff7fe3710 (LWP 2759)):
  7. Continuing.
  8. Cannot execute this command while the selected thread is running.
  9. end
  10. end
  11. [Thread 0x7ffff5c87910 (LWP 2764) exited]
  12. [Thread 0x7ffff6c89910 (LWP 2762) exited]
  13. Breakpoint 3, main (argc=1, argv=0x7fffffffe348) at nonstop.cpp:24
  14. return 0;
  15. (gdb) continue
  16. Thread 1 (Thread 0x7ffff7fe3710 (LWP 2759)):
  17. Continuing.
  18. Program exited normally.

参考资料

Debugging with GDB

Reverse Debugging, Multi-Process and Non-Stop Debugging Come to the CDT

(破砂锅 )

这篇关于多线程调试必杀技 - GDB的non-stop模式的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/179048

相关文章

在JS中的设计模式的单例模式、策略模式、代理模式、原型模式浅讲

1. 单例模式(Singleton Pattern) 确保一个类只有一个实例,并提供一个全局访问点。 示例代码: class Singleton {constructor() {if (Singleton.instance) {return Singleton.instance;}Singleton.instance = this;this.data = [];}addData(value)

ASIO网络调试助手之一:简介

多年前,写过几篇《Boost.Asio C++网络编程》的学习文章,一直没机会实践。最近项目中用到了Asio,于是抽空写了个网络调试助手。 开发环境: Win10 Qt5.12.6 + Asio(standalone) + spdlog 支持协议: UDP + TCP Client + TCP Server 独立的Asio(http://www.think-async.com)只包含了头文件,不依

如何在Visual Studio中调试.NET源码

今天偶然在看别人代码时,发现在他的代码里使用了Any判断List<T>是否为空。 我一般的做法是先判断是否为null,再判断Count。 看了一下Count的源码如下: 1 [__DynamicallyInvokable]2 public int Count3 {4 [__DynamicallyInvokable]5 get

计算机毕业设计 大学志愿填报系统 Java+SpringBoot+Vue 前后端分离 文档报告 代码讲解 安装调试

🍊作者:计算机编程-吉哥 🍊简介:专业从事JavaWeb程序开发,微信小程序开发,定制化项目、 源码、代码讲解、文档撰写、ppt制作。做自己喜欢的事,生活就是快乐的。 🍊心愿:点赞 👍 收藏 ⭐评论 📝 🍅 文末获取源码联系 👇🏻 精彩专栏推荐订阅 👇🏻 不然下次找不到哟~Java毕业设计项目~热门选题推荐《1000套》 目录 1.技术选型 2.开发工具 3.功能

vscode中文乱码问题,注释,终端,调试乱码一劳永逸版

忘记咋回事突然出现了乱码问题,很多方法都试了,注释乱码解决了,终端又乱码,调试窗口也乱码,最后经过本人不懈努力,终于全部解决了,现在分享给大家我的方法。 乱码的原因是各个地方用的编码格式不统一,所以把他们设成统一的utf8. 1.电脑的编码格式 开始-设置-时间和语言-语言和区域 管理语言设置-更改系统区域设置-勾选Bata版:使用utf8-确定-然后按指示重启 2.vscode

多线程解析报表

假如有这样一个需求,当我们需要解析一个Excel里多个sheet的数据时,可以考虑使用多线程,每个线程解析一个sheet里的数据,等到所有的sheet都解析完之后,程序需要提示解析完成。 Way1 join import java.time.LocalTime;public class Main {public static void main(String[] args) thro

模版方法模式template method

学习笔记,原文链接 https://refactoringguru.cn/design-patterns/template-method 超类中定义了一个算法的框架, 允许子类在不修改结构的情况下重写算法的特定步骤。 上层接口有默认实现的方法和子类需要自己实现的方法

【iOS】MVC模式

MVC模式 MVC模式MVC模式demo MVC模式 MVC模式全称为model(模型)view(视图)controller(控制器),他分为三个不同的层分别负责不同的职责。 View:该层用于存放视图,该层中我们可以对页面及控件进行布局。Model:模型一般都拥有很好的可复用性,在该层中,我们可以统一管理一些数据。Controlller:该层充当一个CPU的功能,即该应用程序

迭代器模式iterator

学习笔记,原文链接 https://refactoringguru.cn/design-patterns/iterator 不暴露集合底层表现形式 (列表、 栈和树等) 的情况下遍历集合中所有的元素