code sample(foo.c)
int main(){
int *x=(int*)malloc(sizeof(int)); // break here
*x=10;
free(x);
return 0;
}
我想在马洛克休息。这是我尝试的:
# gcc -g foo.c -o bar
# gdb bar
(gdb) b main
Breakpoint 1 at 0x80484cf: file src.c, line 7.
(gdb) r
Breakpoint 1, main () at src.c:7
(gdb) b malloc
Breakpoint 2 at 0x550944
(gdb) c
Program exited normally.
我的系统规格是:
- 操作系统: CentOS 5.5
- 20080704 (Red Hat 4.1.2-52)
- gdb: GNU gdb (GDB) Red Hat Enterprise Linux (7.0.1-42.el5)
请告诉我哪里出错了!!
我无法可靠地重现该错误,但是在Linux上,您可以尝试在__libc_malloc
而不是malloc
处中断。
已解决
想通了,实际上断点是在ld-linux.so
而不是libc.so
中设置的,可以使用以下方法解决它:
- b __malloc
- b __libc_malloc
感谢您的调查!!
虽然一个新的问题是:如何要求gdb仅在特定库中设置断点(我知道可以为文件完成)!!