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 容器?
基础教程推荐
- 如何更改 SysDateTimePick32 或 CDateTimeCtrl 的背景颜色? 2022-01-01
- 如何部分禁用 cmake C/C++ 自定义编译器检查 2021-01-01
- c++ STL设置差异 2022-01-01
- 为什么我们不能使用“虚拟继承"?在 COM 中? 2022-01-01
- 提升 ASIO 流缓冲 2021-01-01
- 如何在 C++ 中正确使用命名空间? 2022-01-01
- 与 CAS 的原子交换(使用 gcc 同步内置函数) 2022-01-01
- C++:获取传递给函数的多维数组的行大小 2021-01-01
- 将不可复制的闭包对象传递给 std::function 参数 2021-01-01
- 随机插入/删除的综合向量与链表基准 2022-01-01
