如何在WinDbg中打印执行过程中的每个函数调用?
我正在调试一个用 VC++ 编写的应用程序。 如何让 WinDbg 在执行调试过程期间打印函数名称和函数参数的所有值?
I am debugging an application written in VC++.
How do i make WinDbg print the function name and all the values of the arguments to the functions during execution of the debuged process?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好的,我刚刚发现可以使用 "wt" 命令。
Ok, i just found out that it can be done using the "wt" command.
很抱歉没有给出完整的答案,但您也许可以将我给出的建议与这些点结合起来。
首先,这里 和文章描述了如何在 WinDbg 中获取变量的值 - 您也许可以使用它来获取参数值。
另外,这个博客 有相当多的WinDbg脚本示例,这可以帮助您编写脚本来完成您需要的任务。
希望这有帮助。
Sorry for not giving a complete answer, but you might be able to join the dots with the suggestions I give.
First, here's and article to describe how to get the values of variable in WinDbg - you might be able to use this to get the parameter values.
Also, this blog has quite a number of WinDbg script example, this could help you write a script to do task you need.
Hope this helps.