- 论坛徽章:
- 0
|
[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);
} |
|