Windbg中gdb的list,disas,x对应的命令是什么?
我对windbg还很陌生,windbg中有这样的命令吗?
I'm pretty new to windbg ,is there such commands in windbg?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我对windbg还很陌生,windbg中有这样的命令吗?
I'm pretty new to windbg ,is there such commands in windbg?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
这些是模式或不太等效的命令。这些命令的参数不同(例如范围规范),但通常很容易通过在 WinDbg 中反复试验来学习。
ls .
(即“ls”后跟点)。在使用此命令之前,您可能必须使用.srcpath
命令设置对源代码位置的引用,除非您在进行构建的同一台计算机上进行调试。u [地址]
。如果没有地址,则使用当前的 EIP/RIP。每个命令都采用一个可选的地址和范围作为参数。
These are mode or less equivalent commands. The arguments for these commands are different, (e.g. range specification), but it is usually easy to learn by trial and error right inside the WinDbg.
ls .
(i.e. 'ls' followed by dot). Before using this command you might have to setup reference to source code location using.srcpath
command, unless you are debugging on the same machine that did the build.u [address]
. Without address the current EIP/RIP is used.Each command takes an optional address and range as arguments.