GDB多线程调试
查看线程的相关信息
使用 GDB 调试多线程的程序时,可以使用下面的命令获取线程的信息,命令展示如下:info threads
显示可以调试的所有线程,GDB 会为每个线程分配一个ID(和 tid 不同),编号一般从 1 开始,当前调试的线程编号前有“*”。调试多线程
调试多线程的程序和调试普通的单线程的程序是不同的。当我们调试多线程中的某一个线程时,需要对其他线程的状态做一些设置,包括主线程调试时其他线程是否运行以及运行时需要执行的命令。下面是调试多线程命令的详细介绍。1. 调试线程时,可以做到切换线程,使用命令:
thread [ID]
通过线程的编号切换到指定的线程。实例:thread 2 //切换到编号为 2 的线程。
2. 为运行中的线程指定执行命令,命令格式展示如下:thread apply [ID……] [command]
这个命令可以指定多个 ID,使用 all 表示指定所有的线程。command表示执行的命令。实例:
(gdb) thread apply 1 continue // 1号线程执行continue命令。
(gdb) thread apply 1 2 continue //1号和二号线程执行continue命令
(gdb) thread apply all continue //所有的线程执行continue命令
set scheduler-locking [mode]
在线程中设置断点
我们可以设置断点在所有的线程上或是在某个特定的线程,在GDB中使用下面的命令可以很容易完成这项工作:
break <linespec> thread [ID]
break <linespec> thread [ID] if ...
我们还可以为某线程指定断点条件。例如:
(gdb) break frik.c:13 thread 28 if bartab > lim
当程序被 GDB 停住时,所有的运行线程都会被停住。这方便查看运行程序的总体情况。而在恢复程序运行时,所有的线程也会被恢复运行。实例:
#include <string.h>
#include <stdlib.h>
#include <pthread.h>
static void *thread_job(void *s)
{
printf("this is 1\n");
}
static void *thread_job1(void *s)
{
printf("this is 2\n");
}
int main(void)
{
pthread_t tid,tid1;
pthread_create(&tid, NULL, thread_job, NULL);
pthread_create(&tid1, NULL, thread_job1, NULL);
pthread_join(tid,NULL);
pthread_join(tid1,NULL);
exit(0);
}
(gdb) info breakpoints //在三个线程中分别设置断点,显示断点信息。
Num Type Disp Enb Address What
1 breakpoint keep y 0x0000000000000766 in thread_job at test.c:9
2 breakpoint keep y 0x0000000000000781 in thread_job1 at test.c:13
3 breakpoint keep y 0x0000000000000803 in main at test.c:25
(gdb) run
Starting program: /home/wjc/hsxy/lianxi/10/test/a.out
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
[New Thread 0x7ffff77c4700 (LWP 3931)]
[New Thread 0x7ffff6fc3700 (LWP 3932)]
[Switching to Thread 0x7ffff77c4700 (LWP 3931)]
Thread 2 "a.out" hit Breakpoint 1, thread_job (s=0x0) at test.c:9
9 printf("this is 1\n");
(gdb) info threads //显示三个线程信息,当前调试的是2号线程
Id Target Id Frame
1 Thread 0x7ffff7fd1740 (LWP 3927) "a.out" 0x00007ffff7bbed2d in _
* 2 Thread 0x7ffff77c4700 (LWP 3931) "a.out" thread_job (s=0x0) at test.c:9
3 Thread 0x7ffff6fc3700 (LWP 3932) "a.out" thread_job1 (s=0x0)
at test.c:13
(gdb) thread 1 //切换到1号线程
[Switching to thread 1 (Thread 0x7ffff7fd1740 (LWP 3927))]
#0 0x00007ffff7bbed2d in __pthread_timedjoin_ex ()
from /lib/x86_64-linux-gnu/libpthread.so.0
(gdb) info threads
Id Target Id Frame
* 1 Thread 0x7ffff7fd1740 (LWP 3927) "a.out" 0x00007ffff7bbed2d in __pthread_timedjoin_ex () from /lib/x86_64-linux-gnu/libpthread.so.0
2 Thread 0x7ffff77c4700 (LWP 3931) "a.out" thread_job (s=0x0) at test.c:9
3 Thread 0x7ffff6fc3700 (LWP 3932) "a.out" thread_job1 (s=0x0)
at test.c:13
(gdb) thread apply all continue //三个线程同时执行continue命令
this is 1
Thread 3 (Thread 0x7ffff6fc3700 (LWP 4083)):
Continuing.
[Thread 0x7ffff77c4700 (LWP 4082) exited]
Thread 3 "a.out" hit Breakpoint 2, thread_job1 (s=0x0) at test.c:13
13 printf("this is 2\n");
this is 2
Thread 1 (Thread 0x7ffff7fd1740 (LWP 4081)):
Continuing.
[Thread 0x7ffff6fc3700 (LWP 4083) exited]
Thread 1 "a.out" hit Breakpoint 3, main () at test.c:25
25 exit(0);
所有教程
- C语言入门
- C语言编译器
- C语言项目案例
- 数据结构
- C++
- STL
- C++11
- socket
- GCC
- GDB
- Makefile
- OpenCV
- Qt教程
- Unity 3D
- UE4
- 游戏引擎
- Python
- Python并发编程
- TensorFlow
- Django
- NumPy
- Linux
- Shell
- Java教程
- 设计模式
- Java Swing
- Servlet
- JSP教程
- Struts2
- Maven
- Spring
- Spring MVC
- Spring Boot
- Spring Cloud
- Hibernate
- Mybatis
- MySQL教程
- MySQL函数
- NoSQL
- Redis
- MongoDB
- HBase
- Go语言
- C#
- MATLAB
- JavaScript
- Bootstrap
- HTML
- CSS教程
- PHP
- 汇编语言
- TCP/IP
- vi命令
- Android教程
- 区块链
- Docker
- 大数据
- 云计算