GDB调试(二)

打印 上一主题 下一主题

主题 934|帖子 934|积分 2802

GDB调试

运行中程序GDB调试

测试程序
  1. //test2.c
  2. //功能:从0开始每秒打印
  3. #include <stdio.h>
  4. #include <unistd.h>
  5. int aaa();
  6. int bbb(int n);
  7. int main()
  8. {
  9.     aaa();
  10. }
  11. int aaa()
  12. {
  13.     bbb(0);
  14. }
  15. int bbb(int n)
  16. {
  17.     for(int i = n; i < n+10000; i++)
  18.     {
  19.         printf("i:%d\n", i);
  20.         n++;
  21.         sleep(1);
  22.     }
  23. }
复制代码
  1. gcc -g -o test2 test2.c
  2. ./test2
  3. //结果
  4. :0
  5. i:1
  6. i:2
  7. i:3
  8. i:4
  9. i:5
  10. i:6
  11. i:7
  12. ......
复制代码
操纵步骤

1.运行程序

在终端窗口运行编译好的程序
  1. ./test2
复制代码
2.历程ID

在另一个终端窗口,使用ps下令找到正在运行程序的历程ID,此中历程ID是第二个
  1. ps aux | grep test2
  2. //结果如下,其中正在运行程序的进程ID是15554
  3. username   15554  0.0  0.0   2776  1408 pts/1    S+   22:38   0:00 ./test2
  4. username   15557  0.0  0.0  12192  2432 pts/2    S+   22:39   0:00 grep --color=auto test
复制代码
3.附加GDB

使用GDB附加到正在运行的程序上
  1. sudo gdb test2 -p 15554
复制代码
这里的sudo加不加看情况,有些不用加
4.GDB调试

在GDB中,你可以使用常用的调试下令如bt(查看调用堆栈),print(打印变量值),continue(继续实行程序),等等
这里因为sleep延时,直接continue后,test2继续运行,gdb这里卡住了,可以用CTRL-C重新停止

5.结束调试

下令解析detach直接使用detach下令,可以从历程中分离GDB并让程序继续运行attach PID重新将GDB附加到某个历程上

GDB调试多历程

测试程序

[code]#include #include #include int main(){        printf("begin\n");        if ( fork() != 0 )        {                printf("我是父历程:历程pid=%d,父历程ppid=%d\n",getpid(),getppid());                int ii;                for(ii=0; ii

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

魏晓东

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表