Dark Mode

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Debugging

Jump to bottom
Marcus Markiewicz edited this page Jan 11, 2024 * 1 revision

Right now we are only shipping 32-bit TeamMate, so beware of platform mismatches if you are running x64 Windows.

To debug a dump:

  1. Use a 32-bit WinDBG / CDB.
  2. Use https://github.com/poizan42/soswow64 so you can use the 64-bit SOS from .NET framework.

For example, to look at memory usage:

  1. !wow64exts.sw
  2. .load soswow64
  3. !dumpheap -stats
  4. !dumpheap -type
  5. !gcroot

Clone this wiki locally