我是靠谱客的博主 忐忑唇膏,最近开发中收集的这篇文章主要介绍gdb 调试java进程_GDB多进程调试,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

在 C 语言中创建多进程程序需要使用 fork 相关的一些函数,调用一次 fork 函数就会创建一个进程。多进程调试时,我们需要对调试的进程和未调试的进程进行设置。下面介绍的一些命令是我们在调试时经常使用到的。

1. GDB默认调试的是父进程,我们可以设置调试的进程,使用命令:

set follow-fork-mode

其中 mode 为设置调试的进程:可以是child,也可以是parent。当 mode 为 parent 时,程序在调用 fork 后调试父进程,子进程不会受到影响。当 mode 为 child 时,程序在调用 fork 后调试子进程,父进程不会受到影响。

2. 查看 GDB 中设置的 follow-fork-mode 可以使用命令:

show follow-fork-mode

3. 在GDB中调试多进程时,可以只调试一个进程,也可以同时调试两个进程,这个和 GDB 中的 detach-on-fork 的设置有关,相关的命令格式展示如下:

set detach-on-fork

mode 可以为 on,也可以为off。当 mode 为 on 时,表示程序只调试一个进程(可以是父进程、子进程),这是 GDB 的默认设置。当 mode 为 off 时,父子进程都在gdb的控制之下,其中一个进程正常的调试,另一个会被设置为暂停状态。

4. 查看 GDB 中设置的 detach-on-fork 可以使用命令:

show detach-on-fork

GDB 将每一个被调试程序的执行状态记录在一个名为 inferior 的结构中。一般情况下一个 inferior 对应一个进程,每个不同的 inferior 有不同的地址空间。inferior 有时候会在进程没有启动的时候就存在。

5. 查看当前调试的所有的 inferior,使用命令:

info inferiors

当前调试的进程前有 "*"。

6. 切换进程使用命令 inferior,使用方式展示如下:

inferior

表示切换到 id 为 num 的 inferior。实例:

inferior 2

切换到 2 号进程。

实例:创建一个多进程的源文件。

#include

#include

#include

#include

#include

int main(void)

{

pid_t pid;

pid = fork();

if(pid < 0)

{

perror("fork()");

}

if(pid == 0)

{

printf("this is child,pid = %dn",getpid());

}

else

{

printf("this is parent,pid = %dn",getpid());

}

exit(0);

}

我们之前在《GDB程序产生中断》中讲到过,使用捕获点 catch 命令可以捕获,当调用 fork 函数会产生中断。

相关调试信息如下:

(gdb) show follow-fork-mode               //显示默认的 follow-fork-mode 配置

Debugger response to a program call of fork or vfork is "parent".

(gdb) show detach-on-fork                  //显示默认的 detach-on-fork  配置

Whether gdb will detach the child of a fork is on.

(gdb) set follow-fork-mode child         //设置 follow-fork-mode 为 child

(gdb) set detach-on-fork off                //设置 detach-on-fork off 为 off

(gdb) catch fork                                    //设置捕获点中断

Catchpoint 1 (fork)

(gdb) run                                              //运行程序

Starting program: /home/wjc/test/test4/a.out  Catchpoint 1 (forked process 2073), 0x00007ffff7ac8b1c in __libc_fork ()

at ../sysdeps/nptl/fork.c:135

warning: Source file is more recent than executable.

(gdb) s

[New process 2073]

Reading symbols from /home/wjc/test/test4/a.out...done.

Reading symbols from /usr/lib/debug/lib/x86_64-linux-gnu/libc-2.27.so...done.

Reading symbols from /usr/lib/debug/lib/x86_64-linux-gnu/ld-2.27.so...done.

__libc_fork () at ../sysdeps/nptl/fork.c:142

warning: Source file is more recent than executable.

(gdb) info inferiors                            //显示程序运行的进程

Num  Description       Executable

1    process 2069      /home/wjc/test/test4/a.out

* 2    process 2073      /home/wjc/test/test4/a.out

(gdb) inferior 1                                 //切换到一号进程

[Switching to inferior 1 [process 2069] (/home/wjc/test/test4/a.out)]

[Switching to thread 1.1 (process 2069)]

#0  0x00007ffff7ac8b1c in __libc_fork () at ../sysdeps/nptl/fork.c:135

(gdb) info inferiors

Num  Description       Executable

* 1    process 2069      /home/wjc/test/test4/a.out

2    process 2073      /home/wjc/test/test4/a.out

(gdb) c                  //执行第一个进程

Continuing.

this is parent,pid = 2069

[Inferior 1 (process 2069) exited normally]

(gdb) info inferiors

Num  Description       Executable

1                /home/wjc/test/test4/a.out

* 2    process 2073      /home/wjc/test/test4/a.out     //第一个进程执行结束,走动切换到第二个进程

(gdb) c                 //执行第二个进程

Continuing.

this is child,pid = 2073

[Inferior 2 (process 2073) exited normally]

(gdb) info inferiors

Num  Description       Executable

1                /home/wjc/test/test4/a.out

* 2                /home/wjc/test/test4/a.out

最后

以上就是忐忑唇膏为你收集整理的gdb 调试java进程_GDB多进程调试的全部内容,希望文章能够帮你解决gdb 调试java进程_GDB多进程调试所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(50)

评论列表共有 0 条评论

立即
投稿
返回
顶部