how to watch where is problem on unmanage memory leak

I create a c# code that allocate context each time and not release it.

I do that to test the dotMemory tool

 

so you can see that unmanage memory is increase

but I want to see the detail why is that increase?  I looking for any clue where is the problematic code so I enter to 1 of the snapshot  

 

and I not see any clue where is the problem, any clue to the problematic unmanage object that I can looking and find on my code

is there any clue in dotMemory?

 

0
4 comments
Official comment

Hi,
what exactly do you mean by "allocate context each time"?

dotMemory is the profiler for managed memory so, regarding to unmanaged memory, it can show only managed objects which hold or represent some unmanaged resource. For example if you create a bitmap or open a file stream and forgot to dispose them, such objects will be reported in "Finalizable objects" inspection due to they have finalizer. If app allocates some unmanaged memory manually for using in the managed part, usually such objects should be "pinned" and will be shown on the heaps fragmentation map at the bottom of "Inspection" view presented on your second screenshot.

Can I watch the unmanage object that create on m dot net application in dotMemory tool??? or is there another tool that I can diagnose unmanage memory ?

0

dotMemory is a pure .NET memory profiler. Unfortunately, you can't inspect unmanage objects in memory snapshot.

Some specific tools can allow you to get information about unmanaged memory of your application. For example, WinDbg is one of them.

0

Hi

I'm facing a similar issue.

I know that it's out of topic as it's not related to dotMemory, yet can anyone provide a detailed guide on how to profile unmanaged memory with WnDbg or any other tool.

And as a suggestion to JetBrains team - dotMemory would be way more valuable if it could provide an end-to-end solution i.e. add the ability to debug issues related to unmanaged memory as well.

Thanks.

0

Please sign in to leave a comment.