CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5
  1. #1
    Join Date
    May 2009
    Posts
    16

    Tool for run-time errors and memory leaks detection

    Hi!

    Created application is working toooo slow, looks like there are a lot of memory leaks, because the app does not use huge resources, and have no many variables. So, please, can you advice some good tool for run-time errors and memory leaks detection in Visual Studio C++?

    Thank you!

  2. #2
    Join Date
    May 2007
    Posts
    811

    Re: Tool for run-time errors and memory leaks detection

    vld and msdn for starters. Remember there is wealth of information up there.

  3. #3
    Join Date
    May 2009
    Posts
    16

    Lightbulb Re: Tool for run-time errors and memory leaks detection

    And what about Deleaker
    One friend advised me it today.

  4. #4
    Join Date
    Jul 2002
    Location
    Portsmouth. United Kingdom
    Posts
    2,727

    Re: Tool for run-time errors and memory leaks detection

    We've been using this one http://www.glowcode.com/
    "It doesn't matter how beautiful your theory is, it doesn't matter how smart you are. If it doesn't agree with experiment, it's wrong."
    Richard P. Feynman

  5. #5
    Lindley is offline Elite Member Power Poster
    Join Date
    Oct 2007
    Location
    Seattle, WA
    Posts
    10,895

    Re: Tool for run-time errors and memory leaks detection

    The best way to avoid memory leaks, of course, is to write code in such a way that they're impossible----eg, use vectors rather than dynamic arrays, put the result of every new into a smart pointer immediately, etc.

Tags for this Thread

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