为什么我无法在 Linux 中的 fopen 处设置断点
这是我的代码:
#include <stdio.h>
int main()
{
fopen("./1.txt","r");
printf("hello");
return 0;
}
$g++ -g -om main.cpp
$gdb ./m
(gdb) b fopen
Breakpoint 1 at 0x804842c
(gdb) b printf
Breakpoint 2 at 0x804843c
(gdb) i b
Num Type Disp Enb Address What
1 breakpoint keep y 0x0804842c <fopen@plt>
2 breakpoint keep y 0x0804843c <printf@plt>
(gdb) r
函数 fopen 处的断点似乎永远不会工作,但 printf 处工作正常。 为什么?
谢谢
Here is my codes:
#include <stdio.h>
int main()
{
fopen("./1.txt","r");
printf("hello");
return 0;
}
$g++ -g -o m main.cpp
$gdb ./m
(gdb) b fopen
Breakpoint 1 at 0x804842c
(gdb) b printf
Breakpoint 2 at 0x804843c
(gdb) i b
Num Type Disp Enb Address What
1 breakpoint keep y 0x0804842c <fopen@plt>
2 breakpoint keep y 0x0804843c <printf@plt>
(gdb) r
it seems that the breakpoint at function fopen never work ,but at printf works fine.
why?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是 GDB 中的一个错误,似乎在当前的 CVS 源中已修复(截至 20120124)。
问题是 Linux 上 32 位 libc.so.6 中有两个版本的
fopen
,并且 GDB 用来选择错误一:如果您也在
main
上中断,并重复info break
,您将看到 GDB 在fopen@GLIBC_2.0
上设置断点,但是调用的函数是fopen@@GLIBC_2.1
。It's a bug in GDB, which appears to be fixed in current CVS sources (as of 20120124).
The problem is that there are two versions of
fopen
in 32-bitlibc.so.6
on Linux, and GDB used to select the wrong one:If you also break on
main
, and repeatinfo break
, you'll see that GDB set the breakpoint onfopen@GLIBC_2.0
, but the function that is called is thefopen@@GLIBC_2.1
.