Search Results

1
vote

Diagnosing an app that fails to halt

The finalizer thread is idle and is waiting for work -- its trace looks fine. Theread 0 also looks fine and is idle -- it waits for the next UI message. Can you give some details on how yo …
0
votes

Help needed for DIA SDK & DbgEng

It is the other way round -- dbghelp is based on DIA. …
1
vote

Breakpoint on api exposed from COM interface.

Regardless of whether you use COM or not, you cannot put breakpoints on an interface: An interface is never executed, so there is no way to "break" on an interface. If, however, you know th …
1
vote

WinDbg using known module

WinDBG tracks modules even after they have been unloaded to make debugging easier. Normally, those unloaded modules should not show up in stack traces. If they do, the unload took place wh …