CDB 不像 WinDBG 那样显示调用堆栈的代码行
我使用的是 WinDBG 6.12.0002.633 X86。
我遇到了一个问题,命令行调试器 CDB 对于 k
和 kL
命令没有显示与 WinDBG 相同的结果。
在 WinDBG 中,k
命令正确显示调用堆栈的代码行,其中 kL
命令正确删除该信息并仅显示偏移量。
1:128:armce> k
Child-SP RetAddr Call Site
761efaf4 78013cdc module_78010000!SomeModule::Foo+0xb4 [bar.cpp @ 268]
1:128:armce> kL
Child-SP RetAddr Call Site
761efaf4 78013cdc module_78010000!SomeModule::Foo+0xb4
在 CDB 中,k
和 kL
的结果是相同的:
1:128:armce> k
Child-SP RetAddr Call Site
761efaf4 78013cdc module_78010000!SomeModule::Foo+0xb4
1:128:armce> kL
Child-SP RetAddr Call Site
761efaf4 78013cdc module_78010000!SomeModule::Foo+0xb4
What can I do to get CDB to show the line of code for the k
像WinDBG那样命令?
I am using WinDBG 6.12.0002.633 X86.
I'm having an issue with the command-line debugger CDB not showing the same results as WinDBG for the k
and kL
commands.
In WinDBG, the k
command correctly shows the line of code for the callstack where the kL
command correctly strips that information and only shows the offset.
1:128:armce> k
Child-SP RetAddr Call Site
761efaf4 78013cdc module_78010000!SomeModule::Foo+0xb4 [bar.cpp @ 268]
1:128:armce> kL
Child-SP RetAddr Call Site
761efaf4 78013cdc module_78010000!SomeModule::Foo+0xb4
In CDB, the results of the k
and kL
are identical:
1:128:armce> k
Child-SP RetAddr Call Site
761efaf4 78013cdc module_78010000!SomeModule::Foo+0xb4
1:128:armce> kL
Child-SP RetAddr Call Site
761efaf4 78013cdc module_78010000!SomeModule::Foo+0xb4
What can I do to get CDB to show the line of code for the k
command as WinDBG does?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试运行命令“.lines”以加载行信息。 WinDBG 默认加载行信息,CDB 和 NTSD 则不加载。
Try running the command ".lines" to cause line information to be loaded. WinDBG defaults to line information being loaded, CDB and NTSD do not.