Suggestions for finding sourced of memory leaks

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Gary Townsend

    Suggestions for finding sourced of memory leaks

    I have a program which is basicay displays a map and a series of moving
    points and refreshes everything every 5 seconds the problem i am
    encountering is a steady prgression of memory usage (According to Task
    Manager in Windows 2K) in an upwards progression. I am calling dispose on
    all objects that expose dispose and still the progression continues. Can
    anyone offer any ways in which i can try and track the memory leak down
    either through the Visual Studio .NET IDE or through Performance Monitors in
    Win 2K.


  • Cor Ligthert [MVP]

    #2
    Re: Suggestions for finding sourced of memory leaks

    Gary,

    Search this messages from Willy he is mostly answering very though this kind
    of questions in the newsgroup dotnet.General.



    Other wise ask your question in that newsgroup, it is often done there.

    I hope this helps,

    Cor


    Comment

    • Herfried K. Wagner [MVP]

      #3
      Re: Suggestions for finding sourced of memory leaks

      "Gary Townsend" <garytownsend@h otmail.com> schrieb:[color=blue]
      >I have a program which is basicay displays a map and a series of moving
      > points and refreshes everything every 5 seconds the problem i am
      > encountering is a steady prgression of memory usage (According to Task
      > Manager in Windows 2K) in an upwards progression. I am calling dispose on
      > all objects that expose dispose and still the progression continues. Can
      > anyone offer any ways in which i can try and track the memory leak down[/color]

      Allocation Profiler src
      <URL:http://www.gotdotnet.c om/Community/UserSamples/Details.aspx?Sa mpleGuid=325432 5d-a4aa-4bb3-aa86-c72d5104ec74>

      CLR Profiler (v2.0)
      <URL:http://www.microsoft.c om/downloads/details.aspx?Fa milyId=86CE6052-D7F4-4AEB-9B7A-94635BEEBDDA&di splaylang=en>

      --
      M S Herfried K. Wagner
      M V P <URL:http://dotnet.mvps.org/>
      V B <URL:http://classicvb.org/petition/>

      Comment

      Working...