diff options
author | Mike McLaughlin <mikem@microsoft.com> | 2015-08-20 15:43:16 -0700 |
---|---|---|
committer | Mike McLaughlin <mikem@microsoft.com> | 2015-08-27 15:57:42 -0700 |
commit | d5d41105716703845d61a6f8c26724381b959c7d (patch) | |
tree | 5848179172032b139f3c0bdd8c6f42abe33f9029 /Documentation | |
parent | a521a46e5e1cac5dba1f6bda6917d7f2bf4300ef (diff) | |
download | coreclr-d5d41105716703845d61a6f8c26724381b959c7d.tar.gz coreclr-d5d41105716703845d61a6f8c26724381b959c7d.tar.bz2 coreclr-d5d41105716703845d61a6f8c26724381b959c7d.zip |
Enabled GCInfo, EEHeap, DumpRuntimeTypes and EHInfo SOS commands.
Added some aliases for the most common commands:
bpmd -> sos bpmd
clrstack -> sos ClrStack
clrthreads -> sos Threads
dumpheap -> sos DumpHeap
dumpobj -> sos DumpObj
dso -> sos DumpStackObjects
eeheap -> sos EEHeap
gcroot -> sos GCRoot
ip2md -> sos IP2MD
printexception -> sos PrintException
Updated the debugging documentation.
Remove the "build.out" file unintentionally added.
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/building/debugging-instructions.md | 41 |
1 files changed, 31 insertions, 10 deletions
diff --git a/Documentation/building/debugging-instructions.md b/Documentation/building/debugging-instructions.md index ff31611dcf..290e061c55 100644 --- a/Documentation/building/debugging-instructions.md +++ b/Documentation/building/debugging-instructions.md @@ -42,27 +42,48 @@ You can combine steps 4-8 and pass everything on the lldb command line: SOS commands supported by the lldb plugin: - IP2MD + bpmd + ClrStack DumpStackObjects DumpMD DumpClass DumpMT DumpArray DumpObj - PrintException - DumpModule - DumpDomain DumpAssembly + DumpDomain + DumpHeap + DumpLog + DumpModule + DumpRuntimeTypes + DumpVC + EEHeap + EHInfo + FindAppDomain + GCRoot + GCInfo + IP2MD + Name2EE + PrintException ThreadState Threads - FindAppDomain - DumpLog Token2EE - Name2EE - ClrStack - BPMD VerifyHeap - DumpHeap + +There are some aliases for the most common commands: + + bpmd -> sos bpmd + clrstack -> sos ClrStack + clrthreads -> sos Threads + dumpheap -> sos DumpHeap + dumpobj -> sos DumpObj + dso -> sos DumpStackObjects + eeheap -> sos EEHeap + gcroot -> sos GCRoot + ip2md -> sos IP2MD + printexception -> sos PrintException + +For more information on SOS commands see: https://msdn.microsoft.com/en-us/library/bb190764(v=vs.110).aspx Debugging Mscorlib and/or managed application ============================================= |