GDB C++ - Inspecting STL Containers when looking at a core dump?(GDB C++ - 在查看核心转储时检查 STL 容器?)
问题描述
我正在 gdb 中调试我的程序的核心转储(事后分析).我打开它:gdb [程序名称] [核心名称]
I'm debugging a core dump of my program (post-mortem) inside gdb. I opened it with: gdb [program_name] [core_name]
但是,当我尝试检查 STL 向量时,例如打印 vec->size()或者打印 vec->at(0)
However when I attempt to inspect a STL vector, e.g. print vec->size() or print vec->at(0)
我得到了错误
如果没有调试过程,您将无法做到这一点"
"You can't do that without a process to debug"
我只是想检查这些容器的内容和大小.有什么方法可以将虚拟进程附加到核心转储 gdb 检查,以便我可以做到这一点?
I'm just trying to inspect the contents and sizes of these containers. Is there any way to attach a dummy process to a core-dump gdb inspection so I can do this?
推荐答案
打印向量:
(gdb) print *vec
然后熟悉实现向量的内部结构并打印原始缓冲区.通常称为_M_buffer"或类似的名称.根据您的操作方式,缓冲区可能位于其中的内部对象.
Then familiarize yourself with the internals of your implementation's vector and print the raw buffer. Often called "_M_buffer" or something like that. Depending on how yours is done there may be an internal object that the buffer is inside of.
这篇关于GDB C++ - 在查看核心转储时检查 STL 容器?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:GDB C++ - 在查看核心转储时检查 STL 容器?


基础教程推荐
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 这个宏可以转换成函数吗? 2022-01-01
- 常量变量在标题中不起作用 2021-01-01
- 我有静态或动态 boost 库吗? 2021-01-01
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01