How to set a breakpoint in GDB where the function returns?(如何在函数返回的 GDB 中设置断点?)
问题描述
我有一个 C++ 函数,它在不同的地方有很多 return 语句.如何在函数实际返回的return语句处设置断点?
I have a C++ function which has many return statements at various places. How to set a breakpoint at the return statement where the function actually returns ?
没有参数的break"命令是什么意思?
And what does "break" command without argument means?
推荐答案
break without arguments 在当前选定堆栈帧中的下一条指令处停止执行.您可以通过 frame 或 up 和 down 命令选择跟踪帧.如果要调试实际上离开当前函数的点,请选择下一个外部框架并在那里中断.
break without arguments stops execution at the next instruction in the currently selected stack frame. You select strack frames via the frame or up and down commands. If you want to debug the point where you are actually leaving the current function, select the next outer frame and break there.
这篇关于如何在函数返回的 GDB 中设置断点?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在函数返回的 GDB 中设置断点?
基础教程推荐
- 随机插入/删除的综合向量与链表基准 2022-01-01
- 如何更改 SysDateTimePick32 或 CDateTimeCtrl 的背景颜色? 2022-01-01
- 为什么我们不能使用“虚拟继承"?在 COM 中? 2022-01-01
- 提升 ASIO 流缓冲 2021-01-01
- C++:获取传递给函数的多维数组的行大小 2021-01-01
- 如何部分禁用 cmake C/C++ 自定义编译器检查 2021-01-01
- 如何在 C++ 中正确使用命名空间? 2022-01-01
- c++ STL设置差异 2022-01-01
- 将不可复制的闭包对象传递给 std::function 参数 2021-01-01
- 与 CAS 的原子交换(使用 gcc 同步内置函数) 2022-01-01
