CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Guest

    Allocated memory in a DLL

    Is it possible to determine the amount of memory a dll has dynamically allocated and not yet freed? What tool is available?

    Kevin M. Reilly


  2. #2
    Join Date
    Apr 1999
    Posts
    15

    Re: Allocated memory in a DLL

    Did you try BoundsChecker? It gives you all memory leaks specifying where it is coming from
    HTH
    Julius


  3. #3
    Guest

    Re: Allocated memory in a DLL

    I am currently using Purify and have checked the program at the homeite and it comes up clean. The problem I am having is that NT brings up a dialog box indicating Virtual Memory is low after my app has been running for a couple of hours. When I bring up Task Manager and check the value under Mem Usage next to my process it is low and unchanging. But the Mem Usage value at the bottom of the Task Manager screen is constantly increasing. When I exit my app the Mem Usage value drops in value and stops increasing immediately.
    What I need is a realtime tool that tells me what is the current outstanding heap usage of all dlls in my app.

    Kevin


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured