5

WinDBG のコマンドに関する参考文献やチュートリアルをいくつか見ました。lmこれ、これ.echo、これ、!runningこれが好きな人もいますnt!_PDB

これらのカテゴリの違いは何ですか

  • xxx
  • .xxx
  • !xxx
  • xxx!yyy

?

彼らはとても混乱しているように見えます。

4

2 に答える 2

2

以下を参照してください。

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

于 2016-05-25T15:31:18.587 に答える