WinDBG のコマンドに関する参考文献やチュートリアルをいくつか見ました。lm
これ、これ.echo
、これ、!running
これが好きな人もいますnt!_PDB
。
これらのカテゴリの違いは何ですか
- xxx
- .xxx
- !xxx
- xxx!yyy
?
彼らはとても混乱しているように見えます。
WinDBG のコマンドに関する参考文献やチュートリアルをいくつか見ました。lm
これ、これ.echo
、これ、!running
これが好きな人もいますnt!_PDB
。
これらのカテゴリの違いは何ですか
?
彼らはとても混乱しているように見えます。
以下を参照してください。
xxx - these are built in commands
.xxx - these are meta commands
!xxx - these are extension commands, so they call a command from an extension dll
xxx!yyy - this looks the syntax to reference an exported function from a dll:
<dll_name>!<method_name>
以下が役に立つかもしれません: http://windbg.info/doc/1-common-cmds.html