Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
129 views

What accounts for the difference between the size of the heap (as reported by umdh) and the (private) working set (as reported by task manager)?

C++ native code running on Windows 7. VS2008. A particular state change on my application increases the working set (private working set) from 16Mb(6.5Mb) to 38Mb(22Mb). As this seemed excessive I ...
1
vote
3answers
389 views

What causes UMDH to fail to give stack traces

I've used UMDH a dozen times before, never with any problem. Suddenly I don't get a function names in the stack traces in my dump files - just a series of addresses. I've got ust enabled: gflags ...
0
votes
0answers
19 views

Internet Explorer 9 Silverlight 4 memory leak

We are streaming video from a ashx implementing IHttpAsyncHandler to our Silverlight client. On the clientside the async handler is getting use in a implementation of MediaStreamSource. It all runs ...
0
votes
0answers
8 views

Any good tools to visualize log files from UMDH (user mode heap dump)

Using umdh I've taken a number of snapshots (e.g., snap1, snap2, snap3, etc) Then I compare snapshots doing: umdh -d snap1 snap2 -f:snap_compare_1_2; umdh -d snap1 snap3 -f:snap_compare_1_3; ...
0
votes
0answers
113 views

umdh memory leak on code that spans across C# into native

I have a C# program that occasionally calls some Native C++ code through a interop wrapper, When I try to use umdh to find memory leak, the call stack becomes ntdll!RtlAllocateHeap+0004986D ...
0
votes
3answers
316 views

Understanding UMDH Warnings

I am new to using UMDH, and I am having some trouble understanding how to proceed with some of the errors it is outputting. I follow the typical usage (from the MS site): gflags -i OCES.exe +ust In ...
0
votes
1answer
123 views

umdh.exe -g option

Am using umdh.exe to analyze possible memory leak. I have a question regarding the '-g' option of umdh.exe. I searched the web, and the available documentation says "Logs the heap blocks that are not ...