免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2422 | 回复: 4
打印 上一主题 下一主题

第一次gdb就碰壁... [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-01-25 16:33 |只看该作者 |倒序浏览
[root@linux tmp]# gdb greeting
GNU gdb Red Hat Linux (6.1post-1.20040607.62rh)
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.  Type "show warranty" for details.
This GDB was configured as "i386-redhat-linux-gnu"...Using host libthread_db library "/lib/tls/libthread_db.so.1".
(gdb) set can-use-hw-watchpoints 0
(gdb) list 1
1       #include  <stdio.h>
2       void my_print(char *string)
3       {
4         printf ("The string is %s\n", string);
5       }
6       void my_print2(char *string)
7       {
8         char *string2;
9         int size,i;
10        size=strlen(string);
(gdb)
11        string2=(char*)malloc(size+1);
12        for (i=0;i<size;i++)
13          string2[size-i]=string;
14        string2[size+1]='\0';
15        printf("The string printed backward is %s\n",string2);
16      }
17      main()
18      {
19        char my_string[]="hello there";
20        my_print(my_string);
(gdb)
21        my_print2(my_string);
22      }
(gdb) b 13
Breakpoint 1 at 0x8048428: file greeting.c, line 13.
(gdb) run
Starting program: /tmp/greeting
Reading symbols from shared object read from target memory...done.
Loaded system supplied DSO at 0xffffe000
The string is hello there
Breakpoint 1, my_print2 (string=0xbfce33b0 "hello there") at greeting.c:13
13          string2[size-i]=string;
(gdb) watch string2[size-i]
Watchpoint 2: string2[size - i]
(gdb) next
Watchpoint 2: string2[size - i]
Old value = 0 '\0'
New value = 104 'h'
my_print2 (string=0xbfce33b0 "hello there") at greeting.c:12
12        for (i=0;i<size;i++)
(gdb)
Watchpoint 2: string2[size - i]
Old value = 104 'h'
New value = 0 '\0'
0x08048445 in my_print2 (string=0xbfce33b0 "hello there") at greeting.c:12
12        for (i=0;i<size;i++)
(gdb)
Breakpoint 1, my_print2 (string=0xbfce33b0 "hello there") at greeting.c:13
13          string2[size-i]=string;
(gdb)
Watchpoint 2: string2[size - i]
Old value = 0 '\0'
New value = 101 'e'
my_print2 (string=0xbfce33b0 "hello there") at greeting.c:12
12        for (i=0;i<size;i++)
(gdb)

当中n次回车

(gdb)
Watchpoint 2: string2[size - i]
Old value = 101 'e'
New value = 0 '\0'
0x08048445 in my_print2 (string=0xbfce33b0 "hello there") at greeting.c:12
12        for (i=0;i<size;i++)
(gdb)
14        string2[size+1]='\0';
(gdb)
15        printf("The string printed backward is %s\n",string2);
(gdb)


The string printed backward is
../../gdb+dejagnu-20040607/gdb/dwarf2-frame.c:834: internal-error: Unknown register rule.
A problem internal to GDB has been detected,
further debugging may prove unreliable.
Quit this debugging session? (y or n) Please answer y or n.




唉。。。怎么第一次就。。。

哪位能解释一下?或者跑着测试一下?



附:
该程序源代码:
[root@linux tmp]# cat greeting.c
#include  <stdio.h>
void my_print(char *string)
{
  printf ("The string is %s\n", string);
}
void my_print2(char *string)
{
  char *string2;
  int size,i;
  size=strlen(string);
  string2=(char*)malloc(size+1);
  for (i=0;i<size;i++)
    string2[size-i]=string;
  string2[size+1]='\0';
  printf("The string printed backward is %s\n",string2);
}
main()
{
  char my_string[]="hello there";
  my_print(my_string);
  my_print2(my_string);
}

论坛徽章:
24
15-16赛季CBA联赛之北京
日期:2018-08-17 18:43:33技术图书徽章
日期:2018-08-22 12:53:57技术图书徽章
日期:2018-08-22 12:54:20技术图书徽章
日期:2018-08-22 12:54:3015-16赛季CBA联赛之福建
日期:2018-10-19 16:58:1619周年集字徽章-庆
日期:2019-08-27 13:28:5619周年集字徽章-19
日期:2019-08-27 13:31:2619周年集字徽章-19
日期:2019-08-27 13:31:2615-16赛季CBA联赛之同曦
日期:2019-09-05 12:03:2819周年集字徽章-周
日期:2019-09-06 18:54:5415-16赛季CBA联赛之上海
日期:2018-07-25 11:55:2615-16赛季CBA联赛之青岛
日期:2018-07-10 14:13:18
2 [报告]
发表于 2008-01-25 18:00 |只看该作者
兄弟,劝你自己先好好静态检查代码看看有没有问题吧. 然后再调试. 另外编译时加上 -Wall 认真对待每一个 Warning那样你就可以更快找到你的错误.

论坛徽章:
0
3 [报告]
发表于 2008-01-25 22:40 |只看该作者
string2[size-i]=string;
上面这个语句好像有问题,是不是应该为:
   string2[size-i]=*(string + i);

另外,  在string2=(char*)malloc(size+1);
语句后应该加入对malloc操作是否成功的判断。

论坛徽章:
0
4 [报告]
发表于 2008-01-28 09:21 |只看该作者
原帖由 incle 于 2008-1-25 18:00 发表
兄弟,劝你自己先好好静态检查代码看看有没有问题吧. 然后再调试. 另外编译时加上 -Wall 认真对待每一个 Warning那样你就可以更快找到你的错误.


老大,这段代码本身就是出错代码,具体错在哪儿我也知道,就是想靠gdb来跑一下,发现其“运行时错误”,编译没问题的。

如果觉得编译都会有warning,那我改成下面这样满足一下编译器吧:

  1. [root@linux tmp]# vi greeting.c
  2. #include  <stdio.h>
  3. #include  <string.h>
  4. #include  <stdlib.h>
  5. void my_print(char *string)
  6. {
  7.   printf ("The string is %s\n", string);
  8. }
  9. void my_print2(char *string)
  10. {
  11.   char *string2;
  12.   int size,i;
  13.   size=strlen(string);
  14.   string2=(char*)malloc(size+1);
  15.   for (i=0;i<size;i++)
  16.     string2[size-i]=string[i];
  17.   string2[size+1]='\0';
  18.   printf("The string printed backward is %s\n",string2);
  19. }
  20. int main()
  21. {
  22.   char my_string[]="hello there";
  23.   my_print(my_string);
  24.   my_print2(my_string);
  25.   return 0;
  26. }
  27. [root@linux tmp]# gcc -g -Wall -o greeting greeting.c
  28. [root@linux tmp]#
复制代码


没问题了吧,可是这和gdb的internal problem有关系吗?

[ 本帖最后由 hahasasa 于 2008-1-28 09:28 编辑 ]

论坛徽章:
0
5 [报告]
发表于 2008-01-28 09:29 |只看该作者
原帖由 chenhj_wo 于 2008-1-25 22:40 发表
string2=string;
上面这个语句好像有问题,是不是应该为:
   string2=*(string + i);

另外,  在string2=(char*)malloc(size+1);
语句后应该加入对malloc操作是否成功的判断。



兄弟,抱歉,被论坛的代码搞得。。。
忘了以代码方式插入我的c代码了。。。。

上面重贴了一下
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP