sos.dll都包含了哪些可用的命令? 如何列出来这些命令
sos.dll都包含了哪些可用的命令? 怎么列出来这些命令?
我在windbg调试一个.net程序的时候,已经.loadby sos clr来加载sos.dll了。
我想知道sos.dll这个dll里面都有哪些可以用的命令,有什么command可以把这些命令列出来呢?
还请指点一下!
------解决方案--------------------
Debugging Tools for Windows
!help
The !help extension displays help text that describes the extension commands exported from the extension DLL.
Do not confuse this extension command with the ? (Command Help) or .help (Meta-Command Help) commands.
Syntax
![ExtensionDLL.]help [-v] [CommandName]
Parameters
ExtensionDLL
Displays help for the specified extension DLL. Type the name of an extension DLL without the .dll file name extension. If the DLL file is not in the extension search path (as displayed by using .chain (List Debugger Extensions)), include the path to the DLL file . For example, to display help for uext.dll, type !uext.help or !Path\winext\uext.help.
If you omit the ExtensionDLL, the debugger will display the help text for the first extension DLL in the list of loaded DLLs.
-v
Displays the most detailed help text available. This feature is not supported in all DLLs.
CommandName
Displays only the help text for the specified command. This feature is not supported in all DLLs or for all commands.
DLL
This extension is supported by most extension DLLs.
Comments
Some individual commands will also display a help text if you use the /? or -? parameter with the command name.
© 2009 Microsoft Corporation
Send feedback on this topic
Debugging Tools for Windows
January 17, 2009
Build machine: CAPEBUILD
请抽时间通读windbg自带的联机帮助。
我在windbg调试一个.net程序的时候,已经.loadby sos clr来加载sos.dll了。
我想知道sos.dll这个dll里面都有哪些可以用的命令,有什么command可以把这些命令列出来呢?
还请指点一下!
------解决方案--------------------
Debugging Tools for Windows
!help
The !help extension displays help text that describes the extension commands exported from the extension DLL.
Do not confuse this extension command with the ? (Command Help) or .help (Meta-Command Help) commands.
Syntax
![ExtensionDLL.]help [-v] [CommandName]
Parameters
ExtensionDLL
Displays help for the specified extension DLL. Type the name of an extension DLL without the .dll file name extension. If the DLL file is not in the extension search path (as displayed by using .chain (List Debugger Extensions)), include the path to the DLL file . For example, to display help for uext.dll, type !uext.help or !Path\winext\uext.help.
If you omit the ExtensionDLL, the debugger will display the help text for the first extension DLL in the list of loaded DLLs.
-v
Displays the most detailed help text available. This feature is not supported in all DLLs.
CommandName
Displays only the help text for the specified command. This feature is not supported in all DLLs or for all commands.
DLL
This extension is supported by most extension DLLs.
Comments
Some individual commands will also display a help text if you use the /? or -? parameter with the command name.
© 2009 Microsoft Corporation
Send feedback on this topic
Debugging Tools for Windows
January 17, 2009
Build machine: CAPEBUILD
请抽时间通读windbg自带的联机帮助。