GDB多进程调试

在使用GDB(GNU Debugger)进行多进程调试时,你可以使用几种不同的方法来管理和调试多个进程。这里是一些基本的步骤和技巧:

1. 启动GDB

首先,你需要启动GDB。通常情况下,你可以通过命令行启动GDB并附加到一个正在运行的进程,或者启动一个新的进程。

gdb <程序名>

或者,附加到一个已经存在的进程:

gdb -p <进程ID>

2. 跟踪多个进程

当你的应用程序启动多个进程时,你可以使用 set follow-fork-mode 命令来控制GDB在fork时应该跟踪父进程还是子进程。

  • 跟踪父进程:
(gdb) set follow-fork-mode parent
  • 跟踪子进程:
(gdb) set follow-fork-mode child

3. 切换进程

如果需要在多个进程之间切换,可以使用 info inferiors 命令查看所有进程的列表,然后使用 inferior 命令选择一个进程。

查看进程列表:

(gdb) info inferiors

切换到特定进程(例如切换到编号为2的进程):

(gdb) inferior 2

4. 调试线程

如果在一个多线程的进程中调试,你还可以使用线程相关的命令。查看和切换线程:

  • 查看所有线程:
(gdb) info threads
  • 切换到特定线程:
(gdb) thread <线程号>

5. 继续和中断进程

在调试过程中,你可以控制进程的执行,使用 continue 命令继续执行,使用 interrupt 命令中断一个正在运行的进程。

6. 设置断点

你可以在代码中设置断点,以便在执行到特定的代码行时停下来:

(gdb) break <文件名>:<行号>

或者在函数入口处设置断点:

(gdb) break <函数名>

小技巧

  • 使用 detach 命令可以从当前进程中分离出来,让它继续运行。
detach inferiors id
  • 设置调试模式

    set detach-on-fork on/off
    

    默认为on,表示调试当前进程的时候其他进程被GDB挂起

  • 使用 kill 命令可以终止当前正在调试的进程。

通过这些步骤和命令,你可以有效地使用GDB进行多进程的调试。这对于开发涉及多个进程交互的复杂应用程序尤其有用。

GDB默认调试父进程

daic@daic:~/Linux/linuxwebserver/part02multiProgress/lesson19$ gdb hello
GNU gdb (Ubuntu 8.1.1-0ubuntu1) 8.1.1
Copyright (C) 2018 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from hello...done.
(gdb) l
1	#include <stdio.h>
2	#include <unistd.h>
3	
4	int main() {
5	
6	    printf("begin\n");
7	
8	    if(fork() > 0) {
9	
10	        printf("我是父进程:pid = %d, ppid = %d\n", getpid(), getppid());
(gdb) l
11	
12	        int i; 
13	        for(i = 0; i < 10; i++) {
14	            printf("i = %d\n", i);
15	            sleep(1);
16	        }
17	
18	    } else {
19	
20	        printf("我是子进程:pid = %d, ppid = %d\n", getpid(), getppid());
(gdb) b 10
Breakpoint 1 at 0x7c8: file hello.c, line 10.
(gdb) b 20
Breakpoint 2 at 0x81e: file hello.c, line 20.
(gdb) i b
Num     Type           Disp Enb Address            What
1       breakpoint     keep y   0x00000000000007c8 in main at hello.c:10
2       breakpoint     keep y   0x000000000000081e in main at hello.c:20
(gdb) r
Starting program: /home/daic/Linux/linuxwebserver/part02multiProgress/lesson19/hello 
begin
我是子进程:pid = 16447, ppid = 16443
j = 0Breakpoint 1, main () at hello.c:10
10	        printf("我是父进程:pid = %d, ppid = %d\n", getpid(), getppid());
(gdb) j = 1
j = 2
j = 3
j = 4
j = 5
j = 6
j = 7
j = 8
j = 9
n
我是父进程:pid = 16443, ppid = 16428
13	        for(i = 0; i < 10; i++) {
(gdb) n
14	            printf("i = %d\n", i);
(gdb) n
i = 0
15	            sleep(1);
(gdb) n
13	        for(i = 0; i < 10; i++) {
(gdb) n
14	            printf("i = %d\n", i);
(gdb) n
i = 1
15	            sleep(1);
(gdb) c
Continuing.
i = 2
i = 3
i = 4
i = 5
i = 6
i = 7
i = 8
i = 9
[Inferior 1 (process 16443) exited normally]
(gdb)  show follow-fork-mode 
Debugger response to a program call of fork or vfork is "parent".
(gdb) set follow-fork-mode child
(gdb) show follow-fork-mode 
Debugger response to a program call of fork or vfork is "child".
(gdb)  i b
Num     Type           Disp Enb Address            What
1       breakpoint     keep y   0x00005555555547c8 in main at hello.c:10breakpoint already hit 2 times
2       breakpoint     keep y   0x000055555555481e in main at hello.c:20
(gdb) r
Starting program: /home/daic/Linux/linuxwebserver/part02multiProgress/lesson19/hello 
begin
[New process 16465]
我是父进程:pid = 16464, ppid = 16428
i = 0
[Switching to process 16465]Thread 2.1 "hello" hit Breakpoint 2, main () at hello.c:20
20	        printf("我是子进程:pid = %d, ppid = %d\n", getpid(), getppid());
(gdb) i = 1
i = 2
i = 3
i = 4
i = 5
i = 6
i = 7
i = 8
i = 9
n
我是子进程:pid = 16465, ppid = 1
23	        for(j = 0; j < 10; j++) {
(gdb) n
24	            printf("j = %d\n", j);
(gdb) n
j = 0
25	            sleep(1);
(gdb) n
23	        for(j = 0; j < 10; j++) {
(gdb) n
24	            printf("j = %d\n", j);

因为gdb8.1版本存在多进程调试bug,故升级到gdb12.1

升级gdb版本步骤

要将GDB(GNU Debugger)从8.1.1版本升级到12.1版本,你可以按照以下步骤操作。这些步骤适用于大多数Linux发行版,但具体命令可能会根据你的操作系统有所不同。请确保按照适用于你的操作系统的指南进行操作。

步骤1: 卸载旧版本的GDB

在安装新版本之前,建议先卸载旧版本的GDB,以避免版本冲突。你可以使用包管理器来执行此操作,例如在Debian或Ubuntu系统上:

sudo apt-get remove gdb

在Red Hat、CentOS或Fedora上:

sudo yum remove gdb

步骤2: 获取最新版本的GDB

有几种方法可以获取最新版本的GDB:

  1. 通过包管理器安装

如果你的Linux发行版的软件源已经包含了新版本的GDB,你可以直接通过包管理器安装。例如,在Debian或Ubuntu上:

sudo apt-get update
sudo apt-get install gdb

在Red Hat、CentOS或Fedora上:

sudo yum install gdb
  1. 从源代码编译

如果包管理器提供的不是最新版本,或者你需要一个具有特定配置的GDB版本,你可以从源代码编译安装。首先,需要从GNU项目的网站或镜像下载最新的GDB源代码:

  1. 访问 GNU官方网站 或 GDB的FTP镜像 下载最新的源代码包。
  2. 解压下载的源码包:
tar -xvf gdb-12.1.tar.xz
  1. 进入解压后的目录,配置并编译源代码:
cd gdb-12.1
./configure
make
  1. 安装编译后的GDB:
sudo make install

步骤3: 验证安装

安装完成后,你可以通过运行以下命令来验证新版本的GDB是否安装成功:

gdb --version

这条命令应该显示出新安装的GDB版本号,例如“GNU gdb (GDB) 12.1”。

注意事项

  • 在编译GDB之前,确保你的系统已安装了所有必需的依赖项,如gcc, make 和开发工具包。
  • 如果你在使用的系统中遇到权限问题或依赖性错误,确保按照你的系统的具体要求解决这些问题。

这样,你就可以从GDB 8.1.1升级到GDB 12.1了。如果你在升级过程中遇到任何问题,可以查看GDB的官方文档或在相应的社区论坛中寻求帮助。

daic@daic:~/Linux/linuxwebserver/part02multiProgress/lesson19$ gdb hello
GNU gdb (GDB) 12.1
Copyright (C) 2022 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Type "show copying" and "show warranty" for details.
This GDB was configured as "x86_64-pc-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<https://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:<http://www.gnu.org/software/gdb/documentation/>.For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from hello...
(gdb) l
1	#include <stdio.h>
2	#include <unistd.h>
3	
4	int main() {
5	
6	    printf("begin\n");
7	
8	    if(fork() > 0) {
9	
10	        printf("我是父进程:pid = %d, ppid = %d\n", getpid(), getppid());
(gdb) l
11	
12	        int i; 
13	        for(i = 0; i < 10; i++) {
14	            printf("i = %d\n", i);
15	            sleep(1);
16	        }
17	
18	    } else {
19	
20	        printf("我是子进程:pid = %d, ppid = %d\n", getpid(), getppid());
(gdb) set detach-on-fork off
(gdb) b 10
Breakpoint 1 at 0x7c8: file hello.c, line 10.
(gdb) b 20
Breakpoint 2 at 0x81e: file hello.c, line 20.
(gdb) i b
Num     Type           Disp Enb Address            What
1       breakpoint     keep y   0x00000000000007c8 in main at hello.c:10
2       breakpoint     keep y   0x000000000000081e in main at hello.c:20
(gdb) r
Starting program: /home/daic/Linux/linuxwebserver/part02multiProgress/lesson19/hello 
begin
[New inferior 2 (process 67145)]Thread 1.1 "hello" hit Breakpoint 1, main () at hello.c:10
10	        printf("我是父进程:pid = %d, ppid = %d\n", getpid(), getppid());
(gdb) n
我是父进程:pid = 67142, ppid = 67133
13	        for(i = 0; i < 10; i++) {
(gdb) n
14	            printf("i = %d\n", i);
(gdb) n
i = 0
15	            sleep(1);
(gdb) info inferiors Num  Description       Connection           Executable        
* 1    process 67142     1 (native)           /home/daic/Linux/linuxwebserver/part02multiProgress/lesson19/hello 2    process 67145     1 (native)           /home/daic/Linux/linuxwebserver/part02multiProgress/lesson19/hello 
(gdb) inferior 2
[Switching to inferior 2 [process 67145] (/home/daic/Linux/linuxwebserver/part02multiProgress/lesson19/hello)]
[Switching to thread 2.1 (process 67145)]
#0  0x00007ffff7ac67cc in fork () from /lib/x86_64-linux-gnu/libc.so.6
(gdb) info inferiors Num  Description       Connection           Executable        1    process 67142     1 (native)           /home/daic/Linux/linuxwebserver/part02multiProgress/lesson19/hello 
* 2    process 67145     1 (native)           /home/daic/Linux/linuxwebserver/part02multiProgress/lesson19/hello 
(gdb) c
Continuing.Thread 2.1 "hello" hit Breakpoint 2, main () at hello.c:20
20	        printf("我是子进程:pid = %d, ppid = %d\n", getpid(), getppid());
(gdb) n
我是子进程:pid = 67145, ppid = 67142
23	        for(j = 0; j < 10; j++) {
(gdb) n
24	            printf("j = %d\n", j);
(gdb) n
j = 0
25	            sleep(1);
(gdb) inferior 1
[Switching to inferior 1 [process 67142] (/home/daic/Linux/linuxwebserver/part02multiProgress/lesson19/hello)]
[Switching to thread 1.1 (process 67142)]
#0  main () at hello.c:15
15	            sleep(1);
(gdb) c
Continuing.
i = 1
i = 2
i = 3
i = 4
i = 5
i = 6
i = 7
i = 8
i = 9
[Inferior 1 (process 67142) exited normally]
[Switching to process 67145]
(gdb) info inferiors Num  Description       Connection           Executable        1    <null>                                 /home/daic/Linux/linuxwebserver/part02multiProgress/lesson19/hello 
* 2    process 67145     1 (native)           /home/daic/Linux/linuxwebserver/part02multiProgress/lesson19/hello 
(gdb) n
23	        for(j = 0; j < 10; j++) {
(gdb) n
24	            printf("j = %d\n", j);
(gdb) c
Continuing.
j = 1
j = 2
j = 3
j = 4
j = 5
j = 6
j = 7
j = 8
j = 9
[Inferior 2 (process 67145) exited normally]

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/828059.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Python基础:【习题系列】函数

在Python中,函数内部用来返回值的关键字是什么?( A ) A.return B.output C.yield D.send 答案:A 难易程度:易 答案解析:return关键字用于从函数中返回值,结束函数的执行。 知识点:函数返回值;Python关键字 在Python函数定义中,用于接收任意数量参数的符号是什么…

深度学习算法简介(一)

目录 ⛳️推荐 前言 1、深度神经网络&#xff08;DNN&#xff09; 2、卷积神经网络&#xff08;CNN&#xff09; 3、残差网络&#xff08;ResNet&#xff09; 4、LSTM&#xff08;长短时记忆网络&#xff09; 5、Word2Vec 6、Transformer 7、生成对抗网络&#xff08;…

kmeans实现图像像素分类

代码 import tkinter as tkfrom tkinter import filedialogfrom PIL import Image, ImageTkimport numpy as np import random import mathclass Cluster(object):def __init__(self):# pixels是像素的意思&#xff0c;这里定义一个像素组用来存放像素的值self.pixels []# 创…

HubSpot功能有哪些?

HubSpot是一个功能丰富的平台&#xff0c;主要涵盖市场营销、销售、客户服务和客户关系管理&#xff08;CRM&#xff09;等领域。以下是HubSpot的一些主要功能&#xff1a; 市场营销自动化&#xff1a;HubSpot允许用户制定和执行多渠道的市场营销活动&#xff0c;包括创建和管…

力扣HOT100 - 105. 从前序与中序遍历序列构造二叉树

解题思路&#xff1a; 分治 以中序遍历为参照&#xff0c;用前序遍历的节点构建二叉树。 root 1 index - left表示前序遍历右子树的开始节点&#xff0c;即当前节点的下一个节点左子树长度。 class Solution {int[] preorder;HashMap<Integer, Integer> map new Ha…

C#基础:WPF中常见控件的布局基础

一、用ViewBox实现放缩控件不变 二、布局代码 <Window x:Class"WpfApp1.MainWindow"xmlns"http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x"http://schemas.microsoft.com/winfx/2006/xaml"Title"MainWindow"…

【PyTorch】3-基础实战(ResNet)

PyTorch&#xff1a;3-基础实战 注&#xff1a;所有资料来源且归属于thorough-pytorch(https://datawhalechina.github.io/thorough-pytorch/)&#xff0c;下文仅为学习记录 3.1&#xff1a;ResNet基本介绍 退化现象&#xff08;degradation&#xff09;&#xff1a;增加网络…

小瓶清洗桶抗酸碱耐高温PFA清洗器半导体实验清洗用

PFA清洗桶&#xff0c;也叫PFA清洗器、PFA小瓶清洗桶&#xff0c;主要用于清洗浸泡实验室小型PFA溶样罐和烧杯等&#xff0c;带有密封螺纹盖&#xff0c;可以用于摇晃&#xff0c;高纯耐高温材质可放置电热板上加热使用。 特点&#xff1a;可拆卸倒酸口&#xff0c;可安全倒出酸…

ctfshow菜狗杯 web 无算力以及easyPytHon_P

web签到题 error_reporting(0); highlight_file(__FILE__);eval($_REQUEST[$_GET[$_POST[$_COOKIE[CTFshow-QQ群:]]]][6][0][7][5][8][0][9][4][4]);套娃传参 中文要编码 Cookies &#xff1a;CTFshow-QQ%E7%BE%A4:a POST:ab GET:?bc&c[6][0][7][5][8][0][9][4][4]syste…

干货收藏:CRM系统帮助中心设计教程

CRM系统&#xff0c;也就是客户关系管理系统&#xff0c;是企业运营中的得力助手&#xff0c;但太复杂的CRM系统有时候用起来也挺让人头疼的。所以&#xff0c;一个好用、易懂的帮助中心就显得尤为重要啦&#xff01;今天我来跟大家分享一下关于CRM系统帮助中心的设计教程。 1.…

09 MySQL--操作真题

1. not in 用一条 SQL 语句&#xff0c;查询出每门课程都大于 80 分的人。 分析&#xff1a; 去重查询出存在课程小于 80 分的人&#xff0c;设为集合A查询不在集合 A 中的人 # 第一步&#xff1a;找小于等于80分的学员姓名 select distinct name from t_student where fens…

Swift手撸轮播效果

一、创建ScrollView objcMembers class LSLottieAnimView: UIView, UIScrollViewDelegate {private var scrollView: UIScrollView UIScrollView()func addScrollView() {scrollView.showsHorizontalScrollIndicator falsescrollView.isPagingEnabled true// 自定义framesc…

Qt5中的常用模块

2024年4月23日&#xff0c;周二上午 以下是 Qt5 中常用的模块列表&#xff1a; 核心模块&#xff08;Core&#xff09;&#xff1a;提供了 Qt 核心功能&#xff0c;包括对象模型、信号与槽机制、事件处理等。图形模块&#xff08;Gui&#xff09;&#xff1a;提供了绘图和窗口…

FACEGOOD-Audio2Face 部署笔记

目录 依赖项安装&#xff1a; cannot import name ‘create_connection‘ from ‘websocket‘ 解决 音频转参数&#xff1a; FACEGOOD-Audio2Face 依赖项安装&#xff1a; tensorflow 2.10.0 pip install websocket cannot import name ‘create_connection‘ from ‘webs…

Transformer - 特征预处理

Transformer - 特征预处理 flyfish 原始数据 train_data.values [[ 5.827 2.009 1.599 0.462 4.203 1.34 30.531][ 5.76 2.076 1.492 0.426 4.264 1.401 30.46 ][ 5.76 1.942 1.492 0.391 4.234 1.31 30.038][ 5.76 1.942 1.492 0.426 4.234 1.31…

Oracle中的时间戳转换与使用

在Oracle数据库中&#xff0c;时间戳是一个非常重要的数据类型&#xff0c;用于记录和管理时间信息。Oracle提供了多种时间戳数据类型&#xff0c;以及丰富的函数和操作符&#xff0c;用于时间戳的转换、计算和比较。本文将介绍Oracle中各种时间戳的转换与使用&#xff0c;帮助…

全量知识系统 程序详细设计 三次模型:数据模型图算模型和统计模型(QA百度文库)

Q1. 递归迭代和回溯是什么的基本结构&#xff0c;为什么 递归、迭代和回溯都是算法设计中常用的策略&#xff0c;它们各自有不同的基本结构和应用场景。 递归&#xff1a; 基本结构&#xff1a;递归的基本结构包括两个部分&#xff1a;递归终止条件和递归过程。递归终止条件…

Linux命令超详细介绍

目录 安装 Linux的目录结构&#xff1a; Linux命令入门&#xff1a; Linux命令的基础格式&#xff1a; 例子&#xff1a; ls 参数 选项 注意&#xff1a; 目录切换命令&#xff1a;cd/pwd cd: pwd: 相对路径和绝对路径&#xff1a; mkdir 不用参数&#xff1a; …

vue 前端参值后端接收的几种方式

文章目录 Get 请求 ParamPut请求 RequestBody Get 请求 Param 前端代码 handleCS(){// debugger// let body {// id:8,// nyApplyDangerdetectionId:8, // uploadStatic:2,// auditorSign:改我了,// auditorDescribe:我也改了// }let companyid 1let body {} get…

【Node.js工程师养成计划】之打造自己的脚手架工具

一、创建全局的自定义命令 1、打开一个空文件夹&#xff0c;新建一个bin文件夹&#xff0c;在bin文件夹下新建cli.js文件&#xff0c;js文件可以命名为cli.js&#xff08;您随意&#xff09; 2、在cli.js文件中的开头&#xff08;&#xff01;&#xff01;&#xff09;写下面这…